diff options
author | dgp <dgp@users.sourceforge.net> | 2004-06-18 20:38:00 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-06-18 20:38:00 (GMT) |
commit | 1247e7630960b0ed9658d606b4a11e5855bf5298 (patch) | |
tree | 62641558728e9adf15391570df8b7c2fe4f8f179 /generic/tclUtil.c | |
parent | 5aa07287a0a3096095738841d801cd1fc7670a34 (diff) | |
download | tcl-1247e7630960b0ed9658d606b4a11e5855bf5298.zip tcl-1247e7630960b0ed9658d606b4a11e5855bf5298.tar.gz tcl-1247e7630960b0ed9658d606b4a11e5855bf5298.tar.bz2 |
* generic/tclEncoding.c: Static TclFindEncodings -> FindEncodings.
* generic/tclInt.h: Updated TclpFindExecutable() so that failed
* generic/tclUtil.c: attempts to find the executable are saved
* unix/tclUnixFile.c: just as successful finds are. [Patch 966053]
* unix/tclUnixTest.c:
Diffstat (limited to 'generic/tclUtil.c')
-rw-r--r-- | generic/tclUtil.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclUtil.c b/generic/tclUtil.c index 6acc643..41a4f0c 100644 --- a/generic/tclUtil.c +++ b/generic/tclUtil.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUtil.c,v 1.44 2004/04/06 22:25:55 dgp Exp $ + * RCS: @(#) $Id: tclUtil.c,v 1.45 2004/06/18 20:38:01 dgp Exp $ */ #include "tclInt.h" @@ -25,6 +25,7 @@ char *tclExecutableName = NULL; char *tclNativeExecutableName = NULL; +int tclFindExecutableSearchDone = 0; /* * The following values are used in the flags returned by Tcl_ScanElement |