diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | generic/tkTextDisp.c | 9 |
2 files changed, 10 insertions, 4 deletions
@@ -1,3 +1,8 @@ +2006-03-27 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net> + + * generic/tkTextDisp.c (MeasureChars): Fix calculations of start and + end of string. [Bugs 1325998, 1456157] + 2006-03-27 Donal K. Fellows <dkf@users.sf.net> * generic/tkImgGIF.c (FileReadGIF): Stop crashes when the first GIF diff --git a/generic/tkTextDisp.c b/generic/tkTextDisp.c index 779bc60..d330e1d 100644 --- a/generic/tkTextDisp.c +++ b/generic/tkTextDisp.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkTextDisp.c,v 1.57 2006/03/24 14:58:00 das Exp $ + * RCS: @(#) $Id: tkTextDisp.c,v 1.58 2006/03/27 13:43:15 cc_benny Exp $ */ #include "tkPort.h" @@ -8061,9 +8061,10 @@ MeasureChars( ch = 0; /* lint. */ curX = startX; - special = source + rangeStart; - end = source + rangeLength; - for (start = source; start < end; ) { + start = source + rangeStart; + end = start + rangeLength; + special = start; + while (start < end) { if (start >= special) { /* * Find the next special character in the string. |