diff options
author | suresh <suresh> | 1998-07-01 15:44:31 (GMT) |
---|---|---|
committer | suresh <suresh> | 1998-07-01 15:44:31 (GMT) |
commit | bf13c9923baee2a979c7550cdfd91002b909ef1c (patch) | |
tree | ff6c0e1d0d7c73520a35f5f0f71f066ed49cf02a | |
parent | 969c2a47808f413a0176ba35f4df4ff3325e6feb (diff) | |
download | tcl-bf13c9923baee2a979c7550cdfd91002b909ef1c.zip tcl-bf13c9923baee2a979c7550cdfd91002b909ef1c.tar.gz tcl-bf13c9923baee2a979c7550cdfd91002b909ef1c.tar.bz2 |
Changed variable name "tclAlternateInitScript" to "tclPreInitScript".
-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; /* *---------------------------------------------------------------- |