summaryrefslogtreecommitdiffstats
path: root/library/text.tcl
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2001-08-27 01:44:48 (GMT)
committerdgp <dgp@noemail.net>2001-08-27 01:44:48 (GMT)
commit49ab50976baec2a39240fd3436c3ba1eab7a2d29 (patch)
treee82cb3186e59b7e1c8cd9593ef81865001fe0e1d /library/text.tcl
parent1d060a51fc3feed85828c956e806211eb97edd0a (diff)
downloadtk-49ab50976baec2a39240fd3436c3ba1eab7a2d29.zip
tk-49ab50976baec2a39240fd3436c3ba1eab7a2d29.tar.gz
tk-49ab50976baec2a39240fd3436c3ba1eab7a2d29.tar.bz2
* Corrected TIP 44 typo
that broke binding. Thanks to "Michal" for the fix. [Bug 455468] FossilOrigin-Name: a8bfa38006379815616e330a2c299976cc58789c
Diffstat (limited to 'library/text.tcl')
-rw-r--r--library/text.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/text.tcl b/library/text.tcl
index c3ff764..9abc9ae 100644
--- a/library/text.tcl
+++ b/library/text.tcl
@@ -3,7 +3,7 @@
# This file defines the default bindings for Tk text widgets and provides
# procedures that help in implementing the bindings.
#
-# RCS: @(#) $Id: text.tcl,v 1.16 2001/08/01 16:21:11 dgp Exp $
+# RCS: @(#) $Id: text.tcl,v 1.17 2001/08/27 01:44:48 dgp Exp $
#
# Copyright (c) 1992-1994 The Regents of the University of California.
# Copyright (c) 1994-1997 Sun Microsystems, Inc.
@@ -108,7 +108,7 @@ bind Text <Shift-Right> {
tk::TextKeySelect %W [%W index {insert + 1c}]
}
bind Text <Shift-Up> {
- tkT::extKeySelect %W [tk::TextUpDownLine %W -1]
+ tk::TextKeySelect %W [tk::TextUpDownLine %W -1]
}
bind Text <Shift-Down> {
tk::TextKeySelect %W [tk::TextUpDownLine %W 1]