diff options
author | hobbs <hobbs> | 2004-11-17 22:16:44 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2004-11-17 22:16:44 (GMT) |
commit | ea17ce140cfcffdc236fa0ac45b9835c8f921083 (patch) | |
tree | 2a73a1b103acec020aebff375889a7df238b07c8 /library/console.tcl | |
parent | fb48282ce77a6b2ee69fb9322240ce308fac33a1 (diff) | |
download | tk-ea17ce140cfcffdc236fa0ac45b9835c8f921083.zip tk-ea17ce140cfcffdc236fa0ac45b9835c8f921083.tar.gz tk-ea17ce140cfcffdc236fa0ac45b9835c8f921083.tar.bz2 |
* library/console.tcl (::tk::console::ExpandVariable): correct
array keyname expansion. [Bug 1004508] (bold)
Diffstat (limited to 'library/console.tcl')
-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. |