diff options
author | welch <welch> | 1998-11-02 22:40:04 (GMT) |
---|---|---|
committer | welch <welch> | 1998-11-02 22:40:04 (GMT) |
commit | cd8c940da237ebc45d721e34a01ec618cf9a1c8f (patch) | |
tree | 475b6724597a9814c2dcb0575f0f4572953bbc40 /library | |
parent | f398200e1d23f815f17ac2cd0c4626852e7f2077 (diff) | |
download | tcl-cd8c940da237ebc45d721e34a01ec618cf9a1c8f.zip tcl-cd8c940da237ebc45d721e34a01ec618cf9a1c8f.tar.gz tcl-cd8c940da237ebc45d721e34a01ec618cf9a1c8f.tar.bz2 |
Fixed declaration of errorInfo in tcl_findLibrary
Diffstat (limited to 'library')
-rw-r--r-- | library/init.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/init.tcl b/library/init.tcl index ce40d8d..1f07c01 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.18 1998/10/30 23:02:02 welch Exp $ +# RCS: @(#) $Id: init.tcl,v 1.19 1998/11/02 22:40:09 welch Exp $ # # Copyright (c) 1991-1993 The Regents of the University of California. # Copyright (c) 1994-1996 Sun Microsystems, Inc. @@ -603,7 +603,7 @@ proc auto_reset {} { proc tcl_findLibrary {basename version patch initScript enVarName varName} { upvar #0 $varName the_library - global env + global env errorInfo set dirs {} set errors {} |