diff options
author | oehhar <harald.oehlmann@elmicron.de> | 2024-02-27 07:08:15 (GMT) |
---|---|---|
committer | oehhar <harald.oehlmann@elmicron.de> | 2024-02-27 07:08:15 (GMT) |
commit | 0c1f9e6fcd6641ad219dadbadc45724c39a7171e (patch) | |
tree | 960f54940d8cee96feb0a26c796f5995ef88d0ab /library | |
parent | 60a814c1cb6fbd3c8101a6c4129f760eac136500 (diff) | |
download | tcl-0c1f9e6fcd6641ad219dadbadc45724c39a7171e.zip tcl-0c1f9e6fcd6641ad219dadbadc45724c39a7171e.tar.gz tcl-0c1f9e6fcd6641ad219dadbadc45724c39a7171e.tar.bz2 |
clock requires msgcat 1.7, not 1.6 as minimum
Diffstat (limited to 'library')
-rw-r--r-- | library/clock.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/clock.tcl b/library/clock.tcl index d1a76e7..706bc98 100644 --- a/library/clock.tcl +++ b/library/clock.tcl @@ -15,11 +15,11 @@ # #---------------------------------------------------------------------- -# We must have message catalogs that support the root locale, and we need -# access to the Registry on Windows systems. +# msgcat 1.7 features are used. We need access to the Registry on Windows +# systems. uplevel \#0 { - package require msgcat 1.6 + package require msgcat 1.7 if { $::tcl_platform(platform) eq {windows} } { if { [catch { package require registry 1.1 }] } { namespace eval ::tcl::clock [list variable NoRegistry {}] |