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 | c3b70354368b29e160abc31d79de3ea7f88ba090 (patch) | |
| tree | 960f54940d8cee96feb0a26c796f5995ef88d0ab | |
| parent | ba906b48ba41b020d52a4efd41a756d34525dda3 (diff) | |
| download | tcl-c3b70354368b29e160abc31d79de3ea7f88ba090.zip tcl-c3b70354368b29e160abc31d79de3ea7f88ba090.tar.gz tcl-c3b70354368b29e160abc31d79de3ea7f88ba090.tar.bz2 | |
clock requires msgcat 1.7, not 1.6 as minimum
| -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 {}] |
