summaryrefslogtreecommitdiffstats
path: root/library/text.tcl
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2000-01-06 02:22:24 (GMT)
committerhobbs <hobbs@noemail.net>2000-01-06 02:22:24 (GMT)
commit66c02aeb95c968142ba97df73c9dc31be8767a8c (patch)
treef460bc9e6b6a8136f9c788b897f75dbcfcceca71 /library/text.tcl
parent7acfe87e32be26b9484828ea8a37457eece4d7e2 (diff)
downloadtk-66c02aeb95c968142ba97df73c9dc31be8767a8c.zip
tk-66c02aeb95c968142ba97df73c9dc31be8767a8c.tar.gz
tk-66c02aeb95c968142ba97df73c9dc31be8767a8c.tar.bz2
* library/entry.tcl:
* library/focus.tcl: * library/listbox.tcl: * library/scale.tcl: * library/scrlbar.tcl: * library/tearoff.tcl: * library/text.tcl: * library/tkfbox.tcl: * library/xmfbox.tcl: fixed unprotected arg parsing through eval/after [Bug: 3943] FossilOrigin-Name: 27fac895c60473c5a773921f3f54648bcf82f0ad
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 f3eb662..5df8bb5 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.7 1999/09/02 17:02:53 hobbs Exp $
+# RCS: @(#) $Id: text.tcl,v 1.8 2000/01/06 02:22:24 hobbs Exp $
#
# Copyright (c) 1992-1994 The Regents of the University of California.
# Copyright (c) 1994-1997 Sun Microsystems, Inc.
@@ -634,7 +634,7 @@ proc tkTextAutoScan {w} {
return
}
tkTextSelectTo $w $tkPriv(x) $tkPriv(y)
- set tkPriv(afterId) [after 50 tkTextAutoScan $w]
+ set tkPriv(afterId) [after 50 [list tkTextAutoScan $w]]
}
# tkTextSetCursor