diff options
author | msofer <msofer@noemail.net> | 2004-09-22 15:51:53 (GMT) |
---|---|---|
committer | msofer <msofer@noemail.net> | 2004-09-22 15:51:53 (GMT) |
commit | d79d0840beee85550356b23ba6f973156592c173 (patch) | |
tree | 3ff96ec4c9779d0005c4b9bd70a96ee326482a0b /unix/tclUnixInit.c | |
parent | 442ca11b80d43fc30dd4a2a770f634d7f34bf367 (diff) | |
download | tcl-d79d0840beee85550356b23ba6f973156592c173.zip tcl-d79d0840beee85550356b23ba6f973156592c173.tar.gz tcl-d79d0840beee85550356b23ba6f973156592c173.tar.bz2 |
reverting unintentional change in unix/tclUnixInit.c
FossilOrigin-Name: a15750acb6cae4d599d07703be2c7879353de1ec
Diffstat (limited to 'unix/tclUnixInit.c')
-rw-r--r-- | unix/tclUnixInit.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c index d0bf322..3fe1a0f 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.48 2004/09/22 15:48:23 msofer Exp $ + * RCS: @(#) $Id: tclUnixInit.c,v 1.49 2004/09/22 15:51:53 msofer Exp $ */ #if defined(HAVE_CFBUNDLE) @@ -423,8 +423,7 @@ CONST char *path; /* Path to the executable in native * overwrite pathv[0] since that might produce a relative path. */ - //if (0 && path != NULL) { - if (path != NULL) { + if (0 && path != NULL) { int i, origc; CONST char **origv; |