diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | unix/tclLoadShl.c | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,5 +1,9 @@ 2001-09-10 Don Porter <dgp@users.sourceforge.net> + * unix/tclLoadShl.c: Added #include of tclInt.h; access to Tcl + internals, notably TclpUnloadFile(), is required. Thanks to + Bob Techentin for report and patch. [Bug 459305] + * generic/tclInitScript.h (initScript): * win/tclWinInit.c (TCL_REGISTRY_KEY, TclpSetVariables): Removed vestiges of Tcl's old initialization from registry variables. diff --git a/unix/tclLoadShl.c b/unix/tclLoadShl.c index 5feb489..b99ecad 100644 --- a/unix/tclLoadShl.c +++ b/unix/tclLoadShl.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclLoadShl.c,v 1.6 2001/09/04 18:06:34 vincentdarley Exp $ + * RCS: @(#) $Id: tclLoadShl.c,v 1.7 2001/09/10 21:18:19 dgp Exp $ */ #include <dl.h> @@ -23,7 +23,7 @@ # undef EXTERN #endif -#include "tcl.h" +#include "tclInt.h" /* *---------------------------------------------------------------------- |