diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-03-20 17:36:33 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-03-20 17:36:33 (GMT) |
commit | 63d1232edf70469c276639f36542ee60c3a04387 (patch) | |
tree | b480d4b0fdef3767d87a43e6f2894ce2b857207f /library/spinbox.tcl | |
parent | 6163e7ad2b7623710bf1984e74b685d1c3f7436b (diff) | |
download | tk-63d1232edf70469c276639f36542ee60c3a04387.zip tk-63d1232edf70469c276639f36542ee60c3a04387.tar.gz tk-63d1232edf70469c276639f36542ee60c3a04387.tar.bz2 |
Finish incomplete function renaming. Remove unused function
Diffstat (limited to 'library/spinbox.tcl')
-rw-r--r-- | library/spinbox.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/spinbox.tcl b/library/spinbox.tcl index 6d740bc..95863b4 100644 --- a/library/spinbox.tcl +++ b/library/spinbox.tcl @@ -175,7 +175,7 @@ bind Spinbox <Delete> { if {[%W selection present]} { %W delete sel.first sel.last } else { - %W delete [::tk::startOfGlyphCluster [%W get] [%W index insert]] [::tk::endOfGlyphCluster [%W get] [%W index insert]] + %W delete [::tk::startOfCluster [%W get] [%W index insert]] [::tk::endOfGlyphCluster [%W get] [%W index insert]] } } bind Spinbox <BackSpace> { |