diff options
author | suresh <suresh> | 1998-07-09 13:47:07 (GMT) |
---|---|---|
committer | suresh <suresh> | 1998-07-09 13:47:07 (GMT) |
commit | aa1335bf624cbceccff1a0b7b7d3e890c1eef255 (patch) | |
tree | f0a74fb7338f4d12edec785e169eafd8fba91f7f /win/tclWinInit.c | |
parent | 4a18847f0f8c0b170a9811c41f62b47cf5d8449b (diff) | |
download | tcl-aa1335bf624cbceccff1a0b7b7d3e890c1eef255.zip tcl-aa1335bf624cbceccff1a0b7b7d3e890c1eef255.tar.gz tcl-aa1335bf624cbceccff1a0b7b7d3e890c1eef255.tar.bz2 |
Moved the variable 'tclPreInitScript' to generic/tclInitScript.h.
Diffstat (limited to 'win/tclWinInit.c')
-rw-r--r-- | win/tclWinInit.c | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/win/tclWinInit.c b/win/tclWinInit.c index 484abd7..0610ef6 100644 --- a/win/tclWinInit.c +++ b/win/tclWinInit.c @@ -66,20 +66,13 @@ static char* processors[NUMPROCESSORS] = { }; /* - * The Init script (common to Windows and Unix platforms) is - * defined in tclInitScript.h + * The Init script, tclPreInitScript variable, and the routine + * TclSetPreInitScript (common to Windows and Unix platforms) are defined + * in generic/tclInitScript.h */ #include "tclInitScript.h" -/* - * 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". - */ - -char * tclPreInitScript = NULL; - /* *---------------------------------------------------------------------- |