summaryrefslogtreecommitdiffstats
path: root/library/init.tcl
diff options
context:
space:
mode:
authorhobbs <hobbs>2000-05-18 21:37:19 (GMT)
committerhobbs <hobbs>2000-05-18 21:37:19 (GMT)
commit7447b3a3b41ca8878ced528a4cfe71c0d8bb9be7 (patch)
tree2ea96c5021ec2204c9c3d078151dbb0105b319b4 /library/init.tcl
parentd5514967104a7a68d48db82b18a893807222d7d5 (diff)
downloadtcl-7447b3a3b41ca8878ced528a4cfe71c0d8bb9be7.zip
tcl-7447b3a3b41ca8878ced528a4cfe71c0d8bb9be7.tar.gz
tcl-7447b3a3b41ca8878ced528a4cfe71c0d8bb9be7.tar.bz2
* library/init.tcl (auto_import): added check to see if a valid
pattern was coming in, to avoid simple error cases [Bug: 3326]
Diffstat (limited to 'library/init.tcl')
-rw-r--r--library/init.tcl8
1 files changed, 7 insertions, 1 deletions
diff --git a/library/init.tcl b/library/init.tcl
index 941c5d6..ad0d697 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.40 2000/05/03 00:15:06 hobbs Exp $
+# RCS: @(#) $Id: init.tcl,v 1.41 2000/05/18 21:37:19 hobbs Exp $
#
# Copyright (c) 1991-1993 The Regents of the University of California.
# Copyright (c) 1994-1996 Sun Microsystems, Inc.
@@ -455,6 +455,12 @@ proc auto_qualify {cmd namespace} {
proc auto_import {pattern} {
global auto_index
+ # If no namespace is specified, this will be an error case
+
+ if {![string match *::* $pattern]} {
+ return
+ }
+
set ns [uplevel namespace current]
set patternList [auto_qualify $pattern $ns]