summaryrefslogtreecommitdiffstats
path: root/generic/tkTextIndex.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2012-12-04 17:02:22 (GMT)
committerdgp <dgp@users.sourceforge.net>2012-12-04 17:02:22 (GMT)
commit879b6812977f71d6d2174da3e79e3341ab8ba549 (patch)
treecd8002bc80338c375b21e3ec5c47e7c1aee382c3 /generic/tkTextIndex.c
parent46173c18a5a65efe1003af6a0c3da8125e522841 (diff)
parent5ae5c226312e499948f5934d1d1e14e33265099b (diff)
downloadtk-879b6812977f71d6d2174da3e79e3341ab8ba549.zip
tk-879b6812977f71d6d2174da3e79e3341ab8ba549.tar.gz
tk-879b6812977f71d6d2174da3e79e3341ab8ba549.tar.bz2
[Bug 3588824]: bug in image index handling for weird image names
Diffstat (limited to 'generic/tkTextIndex.c')
-rw-r--r--generic/tkTextIndex.c16
1 files changed, 13 insertions, 3 deletions
diff --git a/generic/tkTextIndex.c b/generic/tkTextIndex.c
index 25888d8..fc97412 100644
--- a/generic/tkTextIndex.c
+++ b/generic/tkTextIndex.c
@@ -760,9 +760,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".
*---------------------------------------------------------------------
*/
@@ -770,6 +772,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.