diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2008-09-25 14:30:09 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2008-09-25 14:30:09 (GMT) |
commit | 1056d12d5d7546c76677aeda3affb83316306329 (patch) | |
tree | 8ba48b636f337246bdaf33dc960f56eb8a1d0004 /win/tclWinInit.c | |
parent | 48db43a92ff221fa237f2c4d1d809ed0397c072c (diff) | |
download | tcl-1056d12d5d7546c76677aeda3affb83316306329.zip tcl-1056d12d5d7546c76677aeda3affb83316306329.tar.gz tcl-1056d12d5d7546c76677aeda3affb83316306329.tar.bz2 |
Implement TIP #315.
Diffstat (limited to 'win/tclWinInit.c')
-rw-r--r-- | win/tclWinInit.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/win/tclWinInit.c b/win/tclWinInit.c index 4d25ec8..97bd9cf 100644 --- a/win/tclWinInit.c +++ b/win/tclWinInit.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinInit.c,v 1.76 2008/04/27 22:21:36 dkf Exp $ + * RCS: @(#) $Id: tclWinInit.c,v 1.77 2008/09/25 14:30:23 dkf Exp $ */ #include "tclWinInt.h" @@ -584,6 +584,12 @@ TclpSetVariables( Tcl_SetVar2(interp, "tcl_platform", "user", Tcl_DStringValue(&ds), TCL_GLOBAL_ONLY); Tcl_DStringFree(&ds); + + /* + * Define what the platform PATH separator is. [TIP #315] + */ + + Tcl_SetVar2(interp, "tcl_platform","pathSeparator", ";", TCL_GLOBAL_ONLY); } /* |