diff options
author | vincentdarley <vincentdarley> | 2004-06-09 22:39:08 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2004-06-09 22:39:08 (GMT) |
commit | 0b71076e3eceb87fa71e4c4bb8586af4d7daf74f (patch) | |
tree | d0729dae13127ef0b0bc2c86feacecfa3e6a00a1 /generic/tkText.c | |
parent | fbfdc190f5cf078f2ec07f759e6eaf162b889b5d (diff) | |
download | tk-0b71076e3eceb87fa71e4c4bb8586af4d7daf74f.zip tk-0b71076e3eceb87fa71e4c4bb8586af4d7daf74f.tar.gz tk-0b71076e3eceb87fa71e4c4bb8586af4d7daf74f.tar.bz2 |
multiline text widget regexp search fix
Diffstat (limited to 'generic/tkText.c')
-rw-r--r-- | generic/tkText.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkText.c b/generic/tkText.c index 01a09f9..fecbdb0 100644 --- a/generic/tkText.c +++ b/generic/tkText.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkText.c,v 1.50 2004/06/04 10:51:18 vincentdarley Exp $ + * RCS: @(#) $Id: tkText.c,v 1.51 2004/06/09 22:39:08 vincentdarley Exp $ */ #include "default.h" @@ -4612,7 +4612,7 @@ SearchCore(interp, searchSpecPtr, patObj) */ if (!match || ((info.extendStart == info.matches[0].start) - && (info.matches[0].end == lastOffset))) { + && (info.matches[0].end == (lastOffset - firstOffset)))) { int extraLines = 1; int prevFullLine; /* |