diff options
author | dgp@users.sourceforge.net <dgp> | 2012-12-04 16:37:18 (GMT) |
---|---|---|
committer | dgp@users.sourceforge.net <dgp> | 2012-12-04 16:37:18 (GMT) |
commit | 2b6a82bc09290a8286de412413d3c9cf9b3380d3 (patch) | |
tree | b0fdcc8a70e63856b4cd8894cb579d21f1365a7a /generic/tkTextIndex.c | |
parent | 53fd4d980f1ed6acb175f16de81c20da2fa76b11 (diff) | |
parent | 9de16ac9e5ed4cf6464d5a374a84a33a9bd82a96 (diff) | |
download | tk-2b6a82bc09290a8286de412413d3c9cf9b3380d3.zip tk-2b6a82bc09290a8286de412413d3c9cf9b3380d3.tar.gz tk-2b6a82bc09290a8286de412413d3c9cf9b3380d3.tar.bz2 |
[Bug 3588824]: bug in image index handling for weird image names
Diffstat (limited to 'generic/tkTextIndex.c')
-rw-r--r-- | generic/tkTextIndex.c | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/generic/tkTextIndex.c b/generic/tkTextIndex.c index a9b0bed..70c94db 100644 --- a/generic/tkTextIndex.c +++ b/generic/tkTextIndex.c @@ -758,9 +758,11 @@ GetIndex( /* *--------------------------------------------------------------------- - * Stage 1: check to see if the index consists of nothing but a mark name. - * We do this check now even though it's also done later, in order to - * allow mark names that include funny characters such as spaces or "+1c". + * Stage 1: check to see if the index consists of nothing but a mark + * name, an embedded window or an embedded image. We do this check + * now even though it's also done later, in order to allow mark names, + * embedded window names or image names that include funny characters + * such as spaces or "+1c". *--------------------------------------------------------------------- */ @@ -768,6 +770,14 @@ GetIndex( goto done; } + if (TkTextWindowIndex(textPtr, string, indexPtr) != 0) { + return TCL_OK; + } + + if (TkTextImageIndex(textPtr, string, indexPtr) != 0) { + return TCL_OK; + } + /* *------------------------------------------------ * Stage 2: start again by parsing the base index. |