summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
authorsuresh <suresh>1998-07-01 15:44:31 (GMT)
committersuresh <suresh>1998-07-01 15:44:31 (GMT)
commitbf13c9923baee2a979c7550cdfd91002b909ef1c (patch)
treeff6c0e1d0d7c73520a35f5f0f71f066ed49cf02a /generic/tclInt.h
parent969c2a47808f413a0176ba35f4df4ff3325e6feb (diff)
downloadtcl-bf13c9923baee2a979c7550cdfd91002b909ef1c.zip
tcl-bf13c9923baee2a979c7550cdfd91002b909ef1c.tar.gz
tcl-bf13c9923baee2a979c7550cdfd91002b909ef1c.tar.bz2
Changed variable name "tclAlternateInitScript" to "tclPreInitScript".
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h9
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;
/*
*----------------------------------------------------------------