summaryrefslogtreecommitdiffstats
path: root/library/ttk/entry.tcl
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-01-13 21:00:08 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-01-13 21:00:08 (GMT)
commit5da102f8bd2f7296a1786f951e0aedf27941ccb5 (patch)
tree85e90e9ff3bdbbaf83c41abc9a41fc09524c44fc /library/ttk/entry.tcl
parentcfce00e636e389f48c32d61c5483a913a0a9d656 (diff)
parent4128d02196b15ba2e54c918a38a55c2c09449bb7 (diff)
downloadtk-5da102f8bd2f7296a1786f951e0aedf27941ccb5.zip
tk-5da102f8bd2f7296a1786f951e0aedf27941ccb5.tar.gz
tk-5da102f8bd2f7296a1786f951e0aedf27941ccb5.tar.bz2
[Bug 3600390]: tk_strictMotif not tested for.
Now all key-bindings for Control-a,b,e,f,n,p (and its shift variant) respect tk_strictMotif.
Diffstat (limited to 'library/ttk/entry.tcl')
-rw-r--r--library/ttk/entry.tcl4
1 files changed, 1 insertions, 3 deletions
diff --git a/library/ttk/entry.tcl b/library/ttk/entry.tcl
index f5ba19e..be2299f 100644
--- a/library/ttk/entry.tcl
+++ b/library/ttk/entry.tcl
@@ -141,9 +141,7 @@ bind TEntry <<NextLine>> {# nothing}
## Additional emacs-like bindings:
#
-bind TEntry <Control-Key-b> { ttk::entry::Move %W prevchar }
-bind TEntry <Control-Key-d> { ttk::entry::Delete %W }
-bind TEntry <Control-Key-f> { ttk::entry::Move %W nextchar }
+bind TEntry <Control-Key-d> { ttk::entry::Delete %W }
bind TEntry <Control-Key-h> { ttk::entry::Backspace %W }
bind TEntry <Control-Key-k> { %W delete insert end }