diff options
author | Kevin B Kenny <kennykb@acm.org> | 2005-12-27 17:39:01 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2005-12-27 17:39:01 (GMT) |
commit | 988dfef7f36424cf6008cd90ce865e7b62735f10 (patch) | |
tree | 136dd1f29ae13555c993c434fd909c75e4ef6393 /library/clock.tcl | |
parent | 18d6765361d9e2703b6f02c23d4edb0c79dffbf6 (diff) | |
download | tcl-988dfef7f36424cf6008cd90ce865e7b62735f10.zip tcl-988dfef7f36424cf6008cd90ce865e7b62735f10.tar.gz tcl-988dfef7f36424cf6008cd90ce865e7b62735f10.tar.bz2 |
Corrected bugs in tommath installation, improved tommath square root performance, patched around a [clock scan] issue with time zones
Diffstat (limited to 'library/clock.tcl')
-rw-r--r-- | library/clock.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/clock.tcl b/library/clock.tcl index 4c64c27..1d75b7d 100644 --- a/library/clock.tcl +++ b/library/clock.tcl @@ -13,7 +13,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: clock.tcl,v 1.28 2005/12/02 22:13:41 kennykb Exp $ +# RCS: @(#) $Id: clock.tcl,v 1.29 2005/12/27 17:39:02 kennykb Exp $ # #---------------------------------------------------------------------- @@ -669,7 +669,7 @@ proc ::tcl::clock::format { args } { # Set defaults set clockval [lindex $args 0] - set format {%a %b %d %H:%M:%S %z %Y} + set format {%a %b %d %H:%M:%S %Z %Y} set gmt 0 set locale C set timezone {} |