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 /unix | |
parent | 48db43a92ff221fa237f2c4d1d809ed0397c072c (diff) | |
download | tcl-1056d12d5d7546c76677aeda3affb83316306329.zip tcl-1056d12d5d7546c76677aeda3affb83316306329.tar.gz tcl-1056d12d5d7546c76677aeda3affb83316306329.tar.bz2 |
Implement TIP #315.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclUnixInit.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c index 0b3cdc9..03c0cd6 100644 --- a/unix/tclUnixInit.c +++ b/unix/tclUnixInit.c @@ -7,7 +7,7 @@ * Copyright (c) 1999 by Scriptics Corporation. * All rights reserved. * - * RCS: @(#) $Id: tclUnixInit.c,v 1.84 2008/07/13 09:03:41 msofer Exp $ + * RCS: @(#) $Id: tclUnixInit.c,v 1.85 2008/09/25 14:30:21 dkf Exp $ */ #include "tclInt.h" @@ -888,6 +888,12 @@ TclpSetVariables( Tcl_SetVar2(interp, "tcl_platform", "user", user, TCL_GLOBAL_ONLY); Tcl_DStringFree(&ds); } + + /* + * Define what the platform PATH separator is. [TIP #315] + */ + + Tcl_SetVar2(interp, "tcl_platform","pathSeparator", ":", TCL_GLOBAL_ONLY); } /* |