summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2012-11-08 13:31:57 (GMT)
committerdgp <dgp@users.sourceforge.net>2012-11-08 13:31:57 (GMT)
commit0dc6225c9d45b52cf96fbb78437408012dc39f14 (patch)
tree088bbb68da8f637852f8b278bd86e825b4900a35
parent4da1749d867350384bc47fa4615b517c02698c0a (diff)
downloadtcl-0dc6225c9d45b52cf96fbb78437408012dc39f14.zip
tcl-0dc6225c9d45b52cf96fbb78437408012dc39f14.tar.gz
tcl-0dc6225c9d45b52cf96fbb78437408012dc39f14.tar.bz2
Revert msgcat requirement bump in the "clock" module. Should be no need for it.
-rw-r--r--library/clock.tcl2
-rw-r--r--tests/clock.test2
2 files changed, 2 insertions, 2 deletions
diff --git a/library/clock.tcl b/library/clock.tcl
index 9563187..32911b3 100644
--- a/library/clock.tcl
+++ b/library/clock.tcl
@@ -19,7 +19,7 @@
# we need access to the Registry on Windows systems.
uplevel \#0 {
- package require msgcat 1.5
+ package require msgcat 1.4
if { $::tcl_platform(platform) eq {windows} } {
if { [catch { package require registry 1.1 }] } {
namespace eval ::tcl::clock [list variable NoRegistry {}]
diff --git a/tests/clock.test b/tests/clock.test
index fc9d172..fea1fc9 100644
--- a/tests/clock.test
+++ b/tests/clock.test
@@ -25,7 +25,7 @@ if {[testConstraint win]} {
}
}
-package require msgcat 1.5
+package require msgcat 1.4
testConstraint detroit \
[expr {![catch {clock format 0 -timezone :America/Detroit -format %z}]}]