diff options
author | hobbs <hobbs> | 2000-01-06 02:22:24 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-01-06 02:22:24 (GMT) |
commit | f56e033eeeeef36def67329d2f3d67f1ef06483b (patch) | |
tree | f460bc9e6b6a8136f9c788b897f75dbcfcceca71 /library/listbox.tcl | |
parent | 0bcb96bc6cddb09417aaa0ca4ad48469d0194255 (diff) | |
download | tk-f56e033eeeeef36def67329d2f3d67f1ef06483b.zip tk-f56e033eeeeef36def67329d2f3d67f1ef06483b.tar.gz tk-f56e033eeeeef36def67329d2f3d67f1ef06483b.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]
Diffstat (limited to 'library/listbox.tcl')
-rw-r--r-- | library/listbox.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/listbox.tcl b/library/listbox.tcl index cac83dd..5c95474 100644 --- a/library/listbox.tcl +++ b/library/listbox.tcl @@ -3,7 +3,7 @@ # This file defines the default bindings for Tk listbox widgets # and provides procedures that help in implementing those bindings. # -# RCS: @(#) $Id: listbox.tcl,v 1.8 1999/12/21 23:55:27 hobbs Exp $ +# RCS: @(#) $Id: listbox.tcl,v 1.9 2000/01/06 02:22:24 hobbs Exp $ # # Copyright (c) 1994 The Regents of the University of California. # Copyright (c) 1994-1995 Sun Microsystems, Inc. @@ -347,7 +347,7 @@ proc tkListboxAutoScan {w} { return } tkListboxMotion $w [$w index @$x,$y] - set tkPriv(afterId) [after 50 tkListboxAutoScan $w] + set tkPriv(afterId) [after 50 [list tkListboxAutoScan $w]] } # tkListboxUpDown -- |