summaryrefslogtreecommitdiffstats
path: root/library/clock.tcl
diff options
context:
space:
mode:
authorsebres <sebres@users.sourceforge.net>2017-01-10 22:34:11 (GMT)
committersebres <sebres@users.sourceforge.net>2017-01-10 22:34:11 (GMT)
commit33212a94d6d0cfef22ff3aced4795edba0932540 (patch)
tree3d22b87eda29f9f003d56fc38945af2f73790410 /library/clock.tcl
parent590e25c971a4f7a6663c82a6c901500c72012cea (diff)
downloadtcl-33212a94d6d0cfef22ff3aced4795edba0932540.zip
tcl-33212a94d6d0cfef22ff3aced4795edba0932540.tar.gz
tcl-33212a94d6d0cfef22ff3aced4795edba0932540.tar.bz2
bug fix by match word token (FindWordEnd fixed);
repaired current locale switch
Diffstat (limited to 'library/clock.tcl')
-rwxr-xr-xlibrary/clock.tcl8
1 files changed, 6 insertions, 2 deletions
diff --git a/library/clock.tcl b/library/clock.tcl
index f874e4d..ca12f4a 100755
--- a/library/clock.tcl
+++ b/library/clock.tcl
@@ -739,7 +739,7 @@ proc ::tcl::clock::ParseClockFormatFormat {procName format locale} {
# Map away the locale-dependent composite format groups
- EnterLocale $locale
+ set locale [EnterLocale $locale]
# Change locale if a fresh locale has been given on the command line.
@@ -2189,6 +2189,7 @@ proc ::tcl::clock::EnterLocale { locale } {
}
# Select the locale, eventually load it
mcpackagelocale set $locale
+ return $locale
}
#----------------------------------------------------------------------
@@ -3028,7 +3029,7 @@ proc ::tcl::clock::SetupTimeZone { timezone {alias {}} } {
&& [catch { LoadZoneinfoFile $timezone } - opts] } {
# Check may be a legacy zone:
-
+
if { $alias eq {} && ![catch {
set tzname [dict get $LegacyTimeZone [string tolower $timezone]]
}] } {
@@ -4460,6 +4461,9 @@ proc ::tcl::clock::AddDays { days clockval timezone changeover } {
#----------------------------------------------------------------------
proc ::tcl::clock::ChangeCurrentLocale {args} {
+
+ configure -default-locale [lindex $args 0]
+
variable FormatProc
variable LocaleNumeralCache