diff options
| author | Kevin B Kenny <kennykb@acm.org> | 2003-05-18 19:48:25 (GMT) |
|---|---|---|
| committer | Kevin B Kenny <kennykb@acm.org> | 2003-05-18 19:48:25 (GMT) |
| commit | beb5f49c7554f030cf4ec48bb8f1282d89a89eee (patch) | |
| tree | 51b5e23a67cd4e57f7e7c0df5dd394a956f99f28 /mac | |
| parent | 5b536675384a2df054ea128e296067ad89f74d06 (diff) | |
| download | tcl-beb5f49c7554f030cf4ec48bb8f1282d89a89eee.zip tcl-beb5f49c7554f030cf4ec48bb8f1282d89a89eee.tar.gz tcl-beb5f49c7554f030cf4ec48bb8f1282d89a89eee.tar.bz2 | |
* compat/strftime.c: Modified TclpStrftime to return its
* generic/tclClock.c: result in UTF-8 encoding, and removed
* mac/tclMacTime.c: the conversion from system encoding to
* unix/tclUnixTime.c: UTF-8 from [clock format]. Needed to
* win/tclWinTime.c: avoid double conversion of the timezone
name on Windows systems. [Bug 624408]
Diffstat (limited to 'mac')
| -rw-r--r-- | mac/tclMacTime.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mac/tclMacTime.c b/mac/tclMacTime.c index fa5b215..d585ee7 100644 --- a/mac/tclMacTime.c +++ b/mac/tclMacTime.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclMacTime.c,v 1.7 2002/01/04 11:21:05 das Exp $ + * RCS: @(#) $Id: tclMacTime.c,v 1.8 2003/05/18 19:48:26 kennykb Exp $ */ #include "tclInt.h" @@ -375,6 +375,7 @@ TclpGetDate( * * Results: * Returns a pointer to a static string, or NULL on failure. + * The static string is in UTF-8 encoding. * * Side effects: * None. |
