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 | 16321d208e7b5eca41183b9f80ea2c122bf54219 (patch) | |
tree | 1453b8217a35cf29393236f381d3ce5623d94da3 | |
parent | 4d201c40184c9b1096e9714d3da01740d0ab661f (diff) | |
parent | 54bef7534cc3a3321a7a8087ceb7073bf4ce096f (diff) | |
download | tk-16321d208e7b5eca41183b9f80ea2c122bf54219.zip tk-16321d208e7b5eca41183b9f80ea2c122bf54219.tar.gz tk-16321d208e7b5eca41183b9f80ea2c122bf54219.tar.bz2 |
merge trunk
-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> { |