diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2008-09-25 14:30:09 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2008-09-25 14:30:09 (GMT) |
| commit | 3e16eb7686e837b0897a81f0c546ab20d86b6c09 (patch) | |
| tree | 8ba48b636f337246bdaf33dc960f56eb8a1d0004 /unix/tclUnixInit.c | |
| parent | 5a031957b45e1f05b142f56ced2cb882562bbfb7 (diff) | |
| download | tcl-3e16eb7686e837b0897a81f0c546ab20d86b6c09.zip tcl-3e16eb7686e837b0897a81f0c546ab20d86b6c09.tar.gz tcl-3e16eb7686e837b0897a81f0c546ab20d86b6c09.tar.bz2 | |
Implement TIP #315.
Diffstat (limited to 'unix/tclUnixInit.c')
| -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); } /* |
