diff options
author | hobbs <hobbs> | 2004-11-17 22:16:44 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2004-11-17 22:16:44 (GMT) |
commit | 7a71bd2222de0c2f78de1c0c696fad270e0ad948 (patch) | |
tree | 2a73a1b103acec020aebff375889a7df238b07c8 /library | |
parent | e7e8f439ab936fb00580c9b5de2b74021e3d4477 (diff) | |
download | tk-7a71bd2222de0c2f78de1c0c696fad270e0ad948.zip tk-7a71bd2222de0c2f78de1c0c696fad270e0ad948.tar.gz tk-7a71bd2222de0c2f78de1c0c696fad270e0ad948.tar.bz2 |
* library/console.tcl (::tk::console::ExpandVariable): correct
array keyname expansion. [Bug 1004508] (bold)
Diffstat (limited to 'library')
-rw-r--r-- | library/console.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/console.tcl b/library/console.tcl index 115830a..1d0ff03 100644 --- a/library/console.tcl +++ b/library/console.tcl @@ -4,7 +4,7 @@ # can be used by non-unix systems that do not have built-in support # for shells. # -# RCS: @(#) $Id: console.tcl,v 1.25 2004/03/17 18:15:44 das Exp $ +# RCS: @(#) $Id: console.tcl,v 1.26 2004/11/17 22:16:44 hobbs Exp $ # # Copyright (c) 1995-1997 Sun Microsystems, Inc. # Copyright (c) 1998-2000 Ajuba Solutions. @@ -948,7 +948,7 @@ proc ::tk::console::ExpandVariable str { lappend vars $ary\($var\) } return $vars - } else { + } elseif {[llength $match] == 1} { set match $ary\($match\) } ## Space transformation avoided for array names. |