diff options
author | hobbs <hobbs> | 2002-05-29 00:19:39 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-05-29 00:19:39 (GMT) |
commit | acc98cfd629f847b6e4b3e7eee967d7fe3f9bcdf (patch) | |
tree | 29125ebe484614a6acad3335d784da4ad422b93a /generic/tclInt.decls | |
parent | 255468e31d6c18b6e10f63c0d914101824c2ce7f (diff) | |
download | tcl-acc98cfd629f847b6e4b3e7eee967d7fe3f9bcdf.zip tcl-acc98cfd629f847b6e4b3e7eee967d7fe3f9bcdf.tar.gz tcl-acc98cfd629f847b6e4b3e7eee967d7fe3f9bcdf.tar.bz2 |
* tests/clock.test: added clock-9.1
* compat/strftime.c:
* generic/tclClock.c:
* generic/tclInt.decls:
* generic/tclIntDecls.h:
* unix/tclUnixTime.c: fix for Windows msvcrt mem leak caused by
using an env(TZ) setting trick for in clock format -gmt 1. This
also makes %s seem to work correctly with -gmt 1 as well as
making it a lot faster by avoid the env(TZ) hack. TclpStrftime
now takes useGMT as an arg. [Bug #559376]
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index 4b6523c..b4d07fa 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -12,7 +12,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tclInt.decls,v 1.48 2002/04/19 14:18:33 das Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.49 2002/05/29 00:19:40 hobbs Exp $ library tcl @@ -518,7 +518,7 @@ declare 133 generic { } declare 134 generic { size_t TclpStrftime(char *s, size_t maxsize, CONST char *format, - CONST struct tm *t) + CONST struct tm *t, int useGMT) } declare 135 generic { int TclpCheckStackSpace(void) |