summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley>2004-10-18 13:40:56 (GMT)
committervincentdarley <vincentdarley>2004-10-18 13:40:56 (GMT)
commitc629e83cae745e12026a3c99570132e5eea38b39 (patch)
treed521f2dee3ebb32750d2c79beb2e2fe42a765849 /library
parent8d9406a709002a21c5cd76c020cc00da34b762c5 (diff)
downloadtk-c629e83cae745e12026a3c99570132e5eea38b39.zip
tk-c629e83cae745e12026a3c99570132e5eea38b39.tar.gz
tk-c629e83cae745e12026a3c99570132e5eea38b39.tar.bz2
remove debug code
Diffstat (limited to 'library')
-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 {