diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2004-09-22 15:48:21 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2004-09-22 15:48:21 (GMT) |
commit | 9cd2909333f98f2b80729361b1492be6b8da5b6c (patch) | |
tree | 7db172f915c75d1855a3c835d5b9a4989a435d62 /unix | |
parent | 9668a0e54abfdea9c4249e5ff8fffcb9acc8c96a (diff) | |
download | tcl-9cd2909333f98f2b80729361b1492be6b8da5b6c.zip tcl-9cd2909333f98f2b80729361b1492be6b8da5b6c.tar.gz tcl-9cd2909333f98f2b80729361b1492be6b8da5b6c.tar.bz2 |
* generic/tclExecute.c (INST_START_CMD):
* tests/proc.test (7.2-3): fix for [Bug 729692] was incorrect
whenever a loop exception was returned.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclUnixInit.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c index 86000cc..d0bf322 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.47 2004/06/23 03:49:59 dgp Exp $ + * RCS: @(#) $Id: tclUnixInit.c,v 1.48 2004/09/22 15:48:23 msofer Exp $ */ #if defined(HAVE_CFBUNDLE) @@ -423,7 +423,8 @@ CONST char *path; /* Path to the executable in native * overwrite pathv[0] since that might produce a relative path. */ - if (0 && path != NULL) { + //if (0 && path != NULL) { + if (path != NULL) { int i, origc; CONST char **origv; |