summaryrefslogtreecommitdiffstats
path: root/tests/textIndex.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2015-04-09 12:51:51 (GMT)
committerdgp <dgp@users.sourceforge.net>2015-04-09 12:51:51 (GMT)
commit64fab8e25828f5f9bcd76657c7dd7ef39ef57792 (patch)
treec81c0289058629d93a5ba6acec83816bd44a6299 /tests/textIndex.test
parent350b8594ee53730964e0de9bd44b15f4f6367a7a (diff)
parenta6198b7f3e2661c08c4de4344af6810ba5e8cb1b (diff)
downloadtk-64fab8e25828f5f9bcd76657c7dd7ef39ef57792.zip
tk-64fab8e25828f5f9bcd76657c7dd7ef39ef57792.tar.gz
tk-64fab8e25828f5f9bcd76657c7dd7ef39ef57792.tar.bz2
[562118ce41] Fix wordstart modifier handling of multi-byte chars
Diffstat (limited to 'tests/textIndex.test')
-rw-r--r--tests/textIndex.test10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/textIndex.test b/tests/textIndex.test
index dead9c1..465f097 100644
--- a/tests/textIndex.test
+++ b/tests/textIndex.test
@@ -905,6 +905,16 @@ test textIndex-22.12 {text index wordstart, unicode} {
test textIndex-22.13 {text index wordstart, unicode} {
text_test_word wordstart "\uc700\uc700 abc" 8
} 3
+test textIndex-22.14 {text index wordstart, unicode, start index at internal segment start} {
+ catch {destroy .t}
+ text .t
+ .t insert end "C'est du texte en fran\u00e7ais\n"
+ .t insert end "\u042D\u0442\u043E\u0020\u0442\u0435\u043A\u0441\u0442\u0020\u043D\u0430\u0020\u0440\u0443\u0441\u0441\u043A\u043E\u043C"
+ .t mark set insert 1.23
+ set res [.t index "1.23 wordstart"]
+ .t mark set insert 2.16
+ lappend res [.t index "2.16 wordstart"] [.t index "2.15 wordstart"]
+} {1.18 2.13 2.13}
test textIndex-22.15 {text index display wordstart} {
catch {destroy .t}
text .t