diff options
author | fvogel <fvogelnew1@free.fr> | 2015-07-14 19:50:15 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2015-07-14 19:50:15 (GMT) |
commit | 3a83abc685b4ac6238014a7064f3384f2282a202 (patch) | |
tree | bf277529ce9827cdc1c66eabc268c39e53981aea /tests/text.test | |
parent | def76faf990796ed8c158a61bd05d4b64ad17984 (diff) | |
download | tk-3a83abc685b4ac6238014a7064f3384f2282a202.zip tk-3a83abc685b4ac6238014a7064f3384f2282a202.tar.gz tk-3a83abc685b4ac6238014a7064f3384f2282a202.tar.bz2 |
Fixed bug [2886436fff] - [.txt delete] deletes before start index - This is option 1: change the behavior of the text widget to completely avoid any deletion before index1bug_2886436fff_option1
Diffstat (limited to 'tests/text.test')
-rw-r--r-- | tests/text.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/text.test b/tests/text.test index e75f38a..53196be 100644 --- a/tests/text.test +++ b/tests/text.test @@ -1267,9 +1267,10 @@ test text-17.8 {DeleteChars procedure} { .t tag add sel 1.0 end .t delete 4.0 end list [.t tag ranges sel] [.t get 1.0 end] -} {{1.0 3.5} {Line 1 +} {{1.0 4.0} {Line 1 abcde 12345 + }} test text-17.9 {DeleteChars procedure} { setup |