diff options
author | dgp <dgp@noemail.net> | 2015-04-09 12:50:22 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2015-04-09 12:50:22 (GMT) |
commit | a246980eebbfa9d7027e481f90beb25ec90fc0c8 (patch) | |
tree | 74c6a8c804211ec12f1d5104a5e2d19f7515ab64 /tests/textIndex.test | |
parent | 6a6a0cb6b407ccc2cd982d18a77d2a760bc11ad3 (diff) | |
parent | 99cd0c6958b9bcd883b97dc6fdfa5a15edaab75a (diff) | |
download | tk-a246980eebbfa9d7027e481f90beb25ec90fc0c8.zip tk-a246980eebbfa9d7027e481f90beb25ec90fc0c8.tar.gz tk-a246980eebbfa9d7027e481f90beb25ec90fc0c8.tar.bz2 |
[562118ce41] Fix wordstart modifier handling of multi-byte chars
FossilOrigin-Name: 6f5cc9f5469a5e28b19d05ee041eb8b4b6f8665e
Diffstat (limited to 'tests/textIndex.test')
-rw-r--r-- | tests/textIndex.test | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/textIndex.test b/tests/textIndex.test index 92cbff0..abed3d4 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 |