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/xmfbox.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/xmfbox.tcl')
-rw-r--r-- | library/xmfbox.tcl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/library/xmfbox.tcl b/library/xmfbox.tcl index 02e18f1..3d168e6 100644 --- a/library/xmfbox.tcl +++ b/library/xmfbox.tcl @@ -4,7 +4,7 @@ # Unix platform. This implementation is used only if the # "tk_strictMotif" flag is set. # -# RCS: @(#) $Id: xmfbox.tcl,v 1.9 1999/11/24 20:59:06 hobbs Exp $ +# RCS: @(#) $Id: xmfbox.tcl,v 1.10 2000/01/06 02:22:25 hobbs Exp $ # # Copyright (c) 1996 Sun Microsystems, Inc. # @@ -786,7 +786,8 @@ proc tkListBoxKeyAccel_Key {w key} { catch { after cancel $tkPriv(lbAccel,$w,afterId) } - set tkPriv(lbAccel,$w,afterId) [after 500 tkListBoxKeyAccel_Reset $w] + set tkPriv(lbAccel,$w,afterId) [after 500 \ + [list tkListBoxKeyAccel_Reset $w]] } proc tkListBoxKeyAccel_Goto {w string} { |