summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--changes5
-rw-r--r--library/init.tcl4
2 files changed, 5 insertions, 4 deletions
diff --git a/changes b/changes
index 6454f8c..8bb2496 100644
--- a/changes
+++ b/changes
@@ -1,6 +1,6 @@
Recent user-visible changes to Tcl:
-RCS: @(#) $Id: changes,v 1.31 1998/10/30 23:01:57 welch Exp $
+RCS: @(#) $Id: changes,v 1.32 1998/11/02 22:40:04 welch Exp $
1. No more [command1] [command2] construct for grouping multiple
commands on a single command line.
@@ -3662,4 +3662,5 @@ closed after their first fileevent, and 2) errors that occur during
close in a fileevent script are actually reflected by the close command. (BW)
10/30/98 (bug fix) Overhaul of pkg_mkIndex to deal with transitive
-package requires and packages split among scripts and binary files. (BW)
+package requires and packages split among scripts and binary files.
+Also fixed ommision of global for errorInfo in tcl_findLibrary. (BW)
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 {}