diff options
-rw-r--r-- | generic/tclInt.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 749ea1b..2472c58 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -1242,13 +1242,12 @@ extern long tclObjsFreed; extern char * tclEmptyStringRep; /* - * A pointer to a string that holds an alternate initialization script to the - * built-in initialization script defined in the file "generic/tclInitScript.h". - * The Tcl_Init() routine will evaluate this script if it contains a non-NULL - * value. + * A pointer to a string that holds an initialization script that if non-NULL + * is evaluated in Tcl_Init() prior to the the built-in initialization script + * that is defined in the file "generic/tclInitScript.h". */ -extern char * tclAlternateInitScript; +extern char * tclPreInitScript; /* *---------------------------------------------------------------- |