summaryrefslogtreecommitdiffstats
path: root/library/text.tcl
diff options
context:
space:
mode:
authorfvogel <fvogel@noemail.net>2015-10-03 20:00:57 (GMT)
committerfvogel <fvogel@noemail.net>2015-10-03 20:00:57 (GMT)
commit8dbd669ce80871b847588982c7c113fb66a33127 (patch)
tree6c070e363070b764416146e1de45299d9a5392d3 /library/text.tcl
parentd235721c5795363152902ab714a23e6be20dfba4 (diff)
downloadtk-8dbd669ce80871b847588982c7c113fb66a33127.zip
tk-8dbd669ce80871b847588982c7c113fb66a33127.tar.gz
tk-8dbd669ce80871b847588982c7c113fb66a33127.tar.bz2
Fixed bug [1669632fff] case (iv) - autoseparator was missing on <Control-backslash>
FossilOrigin-Name: c4882004e7307237ddfe6d0a850549bf108312fa
Diffstat (limited to 'library/text.tcl')
-rw-r--r--library/text.tcl3
1 files changed, 3 insertions, 0 deletions
diff --git a/library/text.tcl b/library/text.tcl
index 1321334..396ce1b 100644
--- a/library/text.tcl
+++ b/library/text.tcl
@@ -244,6 +244,9 @@ bind Text <Control-slash> {
}
bind Text <Control-backslash> {
%W tag remove sel 1.0 end
+ if {[%W cget -autoseparators]} {
+ %W edit separator
+ }
}
bind Text <<Cut>> {
tk_textCut %W