diff options
author | das <das@noemail.net> | 2008-11-01 15:03:27 (GMT) |
---|---|---|
committer | das <das@noemail.net> | 2008-11-01 15:03:27 (GMT) |
commit | 7638afd582ad114166f988229a77a767a854d1b2 (patch) | |
tree | e50383855549a3b91ed761230d1a8ba2095dac32 /library | |
parent | ee6531c1591ee6489f4eba217d31f3e539ec839c (diff) | |
download | tcl-7638afd582ad114166f988229a77a767a854d1b2.zip tcl-7638afd582ad114166f988229a77a767a854d1b2.tar.gz tcl-7638afd582ad114166f988229a77a767a854d1b2.tar.bz2 |
fix typo: s/ZoneinfoFile/LoadZoneinfoFile/
FossilOrigin-Name: b61a23bf6212e9a7341a4febe47b49c19354bbe0
Diffstat (limited to 'library')
-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..75edb1c 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.48 2008/11/01 15:03:28 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" } |