summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2018-03-12 16:00:11 (GMT)
committerdgp <dgp@users.sourceforge.net>2018-03-12 16:00:11 (GMT)
commita14ab9eecbf1be383c8f34d424cd456945cead53 (patch)
tree54c1788055f751b4c31529b4e649ad5a367f2177 /library
parentccb7c3b60b9648221924bc94ed0691e4dc53417d (diff)
parent2ae2445072e3f52e56fa916fae2fbb21ac5629d0 (diff)
downloadtcl-a14ab9eecbf1be383c8f34d424cd456945cead53.zip
tcl-a14ab9eecbf1be383c8f34d424cd456945cead53.tar.gz
tcl-a14ab9eecbf1be383c8f34d424cd456945cead53.tar.bz2
merge 8.7
Diffstat (limited to 'library')
-rw-r--r--library/msgcat/msgcat.tcl3
-rw-r--r--library/msgcat/pkgIndex.tcl2
2 files changed, 3 insertions, 2 deletions
diff --git a/library/msgcat/msgcat.tcl b/library/msgcat/msgcat.tcl
index 96b0110..50a9064 100644
--- a/library/msgcat/msgcat.tcl
+++ b/library/msgcat/msgcat.tcl
@@ -11,7 +11,8 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
-package require Tcl 8.6-
+# We use oo::define::self, which is new in Tcl 8.7
+package require Tcl 8.7-
# When the version number changes, be sure to update the pkgIndex.tcl file,
# and the installation directory in the Makefiles.
package provide msgcat 1.7.0
diff --git a/library/msgcat/pkgIndex.tcl b/library/msgcat/pkgIndex.tcl
index 2feb9c6..3309a30 100644
--- a/library/msgcat/pkgIndex.tcl
+++ b/library/msgcat/pkgIndex.tcl
@@ -1,2 +1,2 @@
-if {![package vsatisfies [package provide Tcl] 8.6-]} {return}
+if {![package vsatisfies [package provide Tcl] 8.7-]} {return}
package ifneeded msgcat 1.7.0 [list source [file join $dir msgcat.tcl]]