summaryrefslogtreecommitdiffstats
path: root/library/text.tcl
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley>2004-10-18 13:40:56 (GMT)
committervincentdarley <vincentdarley>2004-10-18 13:40:56 (GMT)
commit033a34d42974f5727b36afbf5a2838a8c24a84c4 (patch)
treed521f2dee3ebb32750d2c79beb2e2fe42a765849 /library/text.tcl
parentbc47b2c54de58e8510d082f1ed7c45e65fca255a (diff)
downloadtk-033a34d42974f5727b36afbf5a2838a8c24a84c4.zip
tk-033a34d42974f5727b36afbf5a2838a8c24a84c4.tar.gz
tk-033a34d42974f5727b36afbf5a2838a8c24a84c4.tar.bz2
remove debug code
Diffstat (limited to 'library/text.tcl')
-rw-r--r--library/text.tcl3
1 files changed, 1 insertions, 2 deletions
diff --git a/library/text.tcl b/library/text.tcl
index 3d3a219..f630149 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.34 2004/09/24 14:04:03 vincentdarley Exp $
+# RCS: @(#) $Id: text.tcl,v 1.35 2004/10/18 13:40:56 vincentdarley Exp $
#
# Copyright (c) 1992-1994 The Regents of the University of California.
# Copyright (c) 1994-1997 Sun Microsystems, Inc.
@@ -459,7 +459,6 @@ set ::tk::Priv(prevPos) {}
# (int)-1/3 = -1
# The following code ensure equal +/- behaviour.
bind Text <MouseWheel> {
- puts stderr %D
if {%D >= 0} {
%W yview scroll [expr {-%D/3}] pixels
} else {