diff options
author | suresh <suresh@noemail.net> | 1998-07-09 13:47:06 (GMT) |
---|---|---|
committer | suresh <suresh@noemail.net> | 1998-07-09 13:47:06 (GMT) |
commit | e9be3ed7e8a3dc1db6dabf3540fc9f73ab7dd3ac (patch) | |
tree | f0a74fb7338f4d12edec785e169eafd8fba91f7f /win/tclWinInit.c | |
parent | 6db2357342a97563770473d3c56ba4959d71560f (diff) | |
download | tcl-e9be3ed7e8a3dc1db6dabf3540fc9f73ab7dd3ac.zip tcl-e9be3ed7e8a3dc1db6dabf3540fc9f73ab7dd3ac.tar.gz tcl-e9be3ed7e8a3dc1db6dabf3540fc9f73ab7dd3ac.tar.bz2 |
Moved the variable 'tclPreInitScript' to generic/tclInitScript.h.
FossilOrigin-Name: ec637b038f0fcba5fee83b3d02a5503df4c95a7b
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; - /* *---------------------------------------------------------------------- |