summaryrefslogtreecommitdiffstats
path: root/library/text.tcl
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2001-08-27 01:44:48 (GMT)
committerdgp@users.sourceforge.net <dgp>2001-08-27 01:44:48 (GMT)
commit8d9c9a07fafefb64abc65904c6e236c51724a871 (patch)
treee82cb3186e59b7e1c8cd9593ef81865001fe0e1d /library/text.tcl
parentb846cb20e1809f3d70a5a3fbf26f0a6ae3dfe1da (diff)
downloadtk-8d9c9a07fafefb64abc65904c6e236c51724a871.zip
tk-8d9c9a07fafefb64abc65904c6e236c51724a871.tar.gz
tk-8d9c9a07fafefb64abc65904c6e236c51724a871.tar.bz2
* Corrected TIP 44 typo
that broke binding. Thanks to "Michal" for the fix. [Bug 455468]
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]