summaryrefslogtreecommitdiffstats
path: root/generic/tkTextDisp.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tkTextDisp.c')
-rw-r--r--generic/tkTextDisp.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/generic/tkTextDisp.c b/generic/tkTextDisp.c
index f674b75..61fb76e 100644
--- a/generic/tkTextDisp.c
+++ b/generic/tkTextDisp.c
@@ -3219,34 +3219,6 @@ TextInvalidateLineMetrics(
int fromLine;
TextDInfo *dInfoPtr = textPtr->dInfoPtr;
- /*
- * All lines to invalidate must be inside the -startline/-endline range.
- */
-
- if (linePtr != NULL) {
- int start;
- TkTextLine *toLinePtr;
- if (textPtr->start != NULL) {
- fromLine = TkBTreeLinesTo(NULL, linePtr);
- start = TkBTreeLinesTo(NULL, textPtr->start);
- if (fromLine < start) {
- lineCount -= start - fromLine;
- linePtr = textPtr->start;
- }
- }
- if (textPtr->end != NULL) {
- int count = 0;
- toLinePtr = linePtr;
- while (count < lineCount && toLinePtr != NULL) {
- toLinePtr = TkBTreeNextLine(textPtr, toLinePtr);
- count++;
- }
- if (toLinePtr == NULL) {
- lineCount = count;
- }
- }
- }
-
if (linePtr != NULL) {
int counter = lineCount;