diff options
author | fvogel <fvogelnew1@free.fr> | 2016-03-27 15:02:41 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2016-03-27 15:02:41 (GMT) |
commit | d28806f199bb656cda2c4a8f3a96825aec30450a (patch) | |
tree | 7d706f6c1eeada6dca99711a031e0d88e9d2dcf6 /generic/tkText.c | |
parent | 1b8e0125b84845a3b0ba6b69d6c4894aa15627f2 (diff) | |
parent | 6b9f74b94131d093483c64f7ceabf120c0d7cafc (diff) | |
download | tk-d28806f199bb656cda2c4a8f3a96825aec30450a.zip tk-d28806f199bb656cda2c4a8f3a96825aec30450a.tar.gz tk-d28806f199bb656cda2c4a8f3a96825aec30450a.tar.bz2 |
End of fix for [18c08df753] - Merged branch bug-2886436fff-option2
Diffstat (limited to 'generic/tkText.c')
-rw-r--r-- | generic/tkText.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/generic/tkText.c b/generic/tkText.c index 4942913..8edf82d 100644 --- a/generic/tkText.c +++ b/generic/tkText.c @@ -3004,12 +3004,15 @@ DeleteIndexRange( * dummy empty line at the end of the text. If the final newline of the * file (just before the dummy line) is being deleted, then back up index * to just before the newline. If there is a newline just before the first - * character being deleted, then back up the first index too, so that an - * even number of lines gets deleted. Furthermore, remove any tags that - * are present on the newline that isn't going to be deleted after all - * (this simulates deleting the newline and then adding a "clean" one back - * again). Note that index1 and index2 might now be equal again which - * means that no text will be deleted but tags might be removed. + * character being deleted, then back up the first index too. The idea is + * that a deletion involving a range starting at a line start and + * including the final \n (i.e. index2 is "end") is an attempt to delete + * complete lines, so the \n before the deleted block shall become the new + * final \n. Furthermore, remove any tags that are present on the newline + * that isn't going to be deleted after all (this simulates deleting the + * newline and then adding a "clean" one back again). Note that index1 and + * index2 might now be equal again which means that no text will be + * deleted but tags might be removed. */ line1 = TkBTreeLinesTo(textPtr, index1.linePtr); |