diff options
author | das <das> | 2008-11-01 15:03:32 (GMT) |
---|---|---|
committer | das <das> | 2008-11-01 15:03:32 (GMT) |
commit | 95243878b468893c8ae8883654f57e5a68cfd10e (patch) | |
tree | 0ac4da2a381723745ea19b337ff501c4b164f298 | |
parent | 5c2b16b9e79d4ef4fa8875a6b3cbb3ec75eee04a (diff) | |
download | tcl-95243878b468893c8ae8883654f57e5a68cfd10e.zip tcl-95243878b468893c8ae8883654f57e5a68cfd10e.tar.gz tcl-95243878b468893c8ae8883654f57e5a68cfd10e.tar.bz2 |
fix typo: s/ZoneinfoFile/LoadZoneinfoFile/
-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 c657234..b3cf9db 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.47 2008/02/27 02:08:27 kennykb Exp $ +# RCS: @(#) $Id: clock.tcl,v 1.47.2.1 2008/11/01 15:03:32 das Exp $ # #---------------------------------------------------------------------- @@ -3214,7 +3214,7 @@ proc ::tcl::clock::SetupTimeZone { timezone } { # again with a time zone file - this time without a colon if { [catch { LoadTimeZoneFile $timezone }] - && [catch { ZoneinfoFile $timezone } - opts] } { + && [catch { LoadZoneinfoFile $timezone } - opts] } { dict unset opts -errorinfo return -options $opts "time zone $timezone not found" } |