summaryrefslogtreecommitdiffstats
path: root/library/entry.tcl
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-08-09 11:03:00 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-08-09 11:03:00 (GMT)
commitebe99473e61961e6e6c4525ed9efe66f7c3de308 (patch)
treeb8267b8025bccdba2a79df3790081030fc9e28ec /library/entry.tcl
parent32e3d179b323a56e40cf6289607a63ee9b7daa9a (diff)
downloadtk-ebe99473e61961e6e6c4525ed9efe66f7c3de308.zip
tk-ebe99473e61961e6e6c4525ed9efe66f7c3de308.tar.gz
tk-ebe99473e61961e6e6c4525ed9efe66f7c3de308.tar.bz2
[Bug 3555644]: Better use of virtual events.
Diffstat (limited to 'library/entry.tcl')
-rw-r--r--library/entry.tcl10
1 files changed, 0 insertions, 10 deletions
diff --git a/library/entry.tcl b/library/entry.tcl
index de6c463..5dbf063 100644
--- a/library/entry.tcl
+++ b/library/entry.tcl
@@ -227,11 +227,6 @@ if {[tk windowingsystem] ne "win32"} {
# Additional emacs-like bindings:
-bind Entry <Control-a> {
- if {!$tk_strictMotif} {
- tk::EntrySetCursor %W 0
- }
-}
bind Entry <Control-b> {
if {!$tk_strictMotif} {
tk::EntrySetCursor %W [expr {[%W index insert] - 1}]
@@ -242,11 +237,6 @@ bind Entry <Control-d> {
%W delete insert
}
}
-bind Entry <Control-e> {
- if {!$tk_strictMotif} {
- tk::EntrySetCursor %W end
- }
-}
bind Entry <Control-f> {
if {!$tk_strictMotif} {
tk::EntrySetCursor %W [expr {[%W index insert] + 1}]