diff options
author | dgp <dgp@users.sourceforge.net> | 2012-09-11 12:22:45 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2012-09-11 12:22:45 (GMT) |
commit | 4b2008af22433d62c6515a65b03835a6a22a7846 (patch) | |
tree | 1453b8217a35cf29393236f381d3ce5623d94da3 /library | |
parent | 551e70161e9c339ec76820ee4a23e84be8f60e40 (diff) | |
parent | 2168662d02b5d939cb17ae5a4e22901537aa9c8d (diff) | |
download | tk-4b2008af22433d62c6515a65b03835a6a22a7846.zip tk-4b2008af22433d62c6515a65b03835a6a22a7846.tar.gz tk-4b2008af22433d62c6515a65b03835a6a22a7846.tar.bz2 |
merge trunk
Diffstat (limited to 'library')
-rw-r--r-- | library/console.tcl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/library/console.tcl b/library/console.tcl index ab074f5..e93a39d 100644 --- a/library/console.tcl +++ b/library/console.tcl @@ -412,8 +412,6 @@ proc ::tk::ConsoleBind {w} { bind Console <Control-KeyPress> {# nothing} foreach {ev key} { - <<Console_Prev>> <Key-Up> - <<Console_Next>> <Key-Down> <<Console_NextImmediate>> <Control-Key-n> <<Console_PrevImmediate>> <Control-Key-p> <<Console_PrevSearch>> <Control-Key-r> @@ -558,10 +556,10 @@ proc ::tk::ConsoleBind {w} { %W delete insert {insert wordend} } } - bind Console <<Console_Prev>> { + bind Console <<PrevLine>> { tk::ConsoleHistory prev } - bind Console <<Console_Next>> { + bind Console <<NextLine>> { tk::ConsoleHistory next } bind Console <Insert> { |