summaryrefslogtreecommitdiffstats
path: root/library/init.tcl
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2005-04-28 05:34:39 (GMT)
committerdgp <dgp@users.sourceforge.net>2005-04-28 05:34:39 (GMT)
commit5ae9191e36b48e5ff2789da3317c118db29a6a6c (patch)
treefb70f0396a0f5b17ad0eea6f00169be8a5d62111 /library/init.tcl
parentfd15e0bf67810cb7675d509031bf0c4f59f62d0a (diff)
downloadtcl-5ae9191e36b48e5ff2789da3317c118db29a6a6c.zip
tcl-5ae9191e36b48e5ff2789da3317c118db29a6a6c.tar.gz
tcl-5ae9191e36b48e5ff2789da3317c118db29a6a6c.tar.bz2
* library/init.tcl: Corrected flaw in interactive command
* tests/main.test: auto-completion. [Bug 1191409].
Diffstat (limited to 'library/init.tcl')
-rw-r--r--library/init.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/init.tcl b/library/init.tcl
index 0e7cd94..ea1cd85 100644
--- a/library/init.tcl
+++ b/library/init.tcl
@@ -3,7 +3,7 @@
# Default system startup file for Tcl-based applications. Defines
# "unknown" procedure and auto-load facilities.
#
-# RCS: @(#) $Id: init.tcl,v 1.55.2.4 2004/11/13 00:41:58 dgp Exp $
+# RCS: @(#) $Id: init.tcl,v 1.55.2.5 2005/04/28 05:34:40 dgp Exp $
#
# Copyright (c) 1991-1993 The Regents of the University of California.
# Copyright (c) 1994-1996 Sun Microsystems, Inc.
@@ -321,7 +321,7 @@ proc unknown args {
}
}
if {[llength $cmds] == 1} {
- return [uplevel 1 [lreplace $args 0 0 $cmds]]
+ return [uplevel 1 [lreplace $args 0 0 [lindex $cmds 0]]]
}
if {[llength $cmds]} {
if {[string equal $name ""]} {