diff options
| author | fvogel <fvogelnew1@free.fr> | 2017-09-16 08:18:40 (GMT) |
|---|---|---|
| committer | fvogel <fvogelnew1@free.fr> | 2017-09-16 08:18:40 (GMT) |
| commit | d1d338264e13c42787531f48244b432ae55b6fb7 (patch) | |
| tree | 674899afb310e42de3daaa5561ecbef4fa2b7a07 /library | |
| parent | c0a0d15a19ac54d03dfd622ff61838bb7dccc8fa (diff) | |
| parent | da54602493ccf28707320190ca559915a08e3003 (diff) | |
| download | tk-bug_d9fdfa435d.zip tk-bug_d9fdfa435d.tar.gz tk-bug_d9fdfa435d.tar.bz2 | |
merge core-8-6-branchbug_d9fdfa435d
Diffstat (limited to 'library')
| -rw-r--r-- | library/console.tcl | 2 | ||||
| -rw-r--r-- | library/listbox.tcl | 2 | ||||
| -rw-r--r-- | library/text.tcl | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/library/console.tcl b/library/console.tcl index ba68ccc..355a43b 100644 --- a/library/console.tcl +++ b/library/console.tcl @@ -286,6 +286,7 @@ proc ::tk::ConsoleHistory {cmd} { } .console delete promptEnd end .console insert promptEnd $cmd {input stdin} + .console see end } next { incr HistNum @@ -302,6 +303,7 @@ proc ::tk::ConsoleHistory {cmd} { } .console delete promptEnd end .console insert promptEnd $cmd {input stdin} + .console see end } reset { set HistNum 1 diff --git a/library/listbox.tcl b/library/listbox.tcl index 17c03c0..1b35b3d 100644 --- a/library/listbox.tcl +++ b/library/listbox.tcl @@ -206,7 +206,7 @@ if {"x11" eq [tk windowingsystem]} { # Support for mousewheels on Linux/Unix commonly comes through mapping # the wheel to the extended buttons. If you have a mousewheel, find # Linux configuration info at: - # http://www.inria.fr/koala/colas/mouse-wheel-scroll/ + # http://linuxreviews.org/howtos/xfree/mouse/ bind Listbox <4> { if {!$tk_strictMotif} { %W yview scroll -5 units diff --git a/library/text.tcl b/library/text.tcl index 2bf1b2b..9eb6e31 100644 --- a/library/text.tcl +++ b/library/text.tcl @@ -463,7 +463,7 @@ if {"x11" eq [tk windowingsystem]} { # Support for mousewheels on Linux/Unix commonly comes through mapping # the wheel to the extended buttons. If you have a mousewheel, find # Linux configuration info at: - # http://www.inria.fr/koala/colas/mouse-wheel-scroll/ + # http://linuxreviews.org/howtos/xfree/mouse/ bind Text <4> { if {!$tk_strictMotif} { %W yview scroll -50 pixels |
