summaryrefslogtreecommitdiffstats
path: root/library/msgcat
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2002-04-19 23:09:36 (GMT)
committerdgp <dgp@noemail.net>2002-04-19 23:09:36 (GMT)
commit590e7c5c688efeb00d4f741436615aeb7933bd70 (patch)
tree60ee026c9eb569a9d87582528a17cc7d7c828c19 /library/msgcat
parent1be2aff65071876d6d521e8c9bce56a9fec1b4a0 (diff)
downloadtcl-590e7c5c688efeb00d4f741436615aeb7933bd70.zip
tcl-590e7c5c688efeb00d4f741436615aeb7933bd70.tar.gz
tcl-590e7c5c688efeb00d4f741436615aeb7933bd70.tar.bz2
* Added [mcload] to the export list
of msgcat; bumped to 1.2.3. [Bug 544727] FossilOrigin-Name: 5555baf98bd446059c6ce93a53c813956f92863e
Diffstat (limited to 'library/msgcat')
-rw-r--r--library/msgcat/msgcat.tcl7
-rw-r--r--library/msgcat/pkgIndex.tcl2
2 files changed, 5 insertions, 4 deletions
diff --git a/library/msgcat/msgcat.tcl b/library/msgcat/msgcat.tcl
index 4622ea1..e1dbd16 100644
--- a/library/msgcat/msgcat.tcl
+++ b/library/msgcat/msgcat.tcl
@@ -10,13 +10,14 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: msgcat.tcl,v 1.11 2001/08/09 01:06:42 dgp Exp $
+# RCS: @(#) $Id: msgcat.tcl,v 1.12 2002/04/19 23:09:37 dgp Exp $
package require Tcl 8.2
-package provide msgcat 1.2.2
+package provide msgcat 1.2.3
namespace eval msgcat {
- namespace export mc mcset mcmset mclocale mcpreferences mcunknown mcmax
+ namespace export mc mcload mclocale mcmax mcmset mcpreferences mcset \
+ mcunknown
# Records the current locale as passed to mclocale
variable locale ""
diff --git a/library/msgcat/pkgIndex.tcl b/library/msgcat/pkgIndex.tcl
index d3f1d4b..cc1af0c 100644
--- a/library/msgcat/pkgIndex.tcl
+++ b/library/msgcat/pkgIndex.tcl
@@ -1,2 +1,2 @@
if {![package vsatisfies [package provide Tcl] 8.2]} {return}
-package ifneeded msgcat 1.2.2 [list source [file join $dir msgcat.tcl]]
+package ifneeded msgcat 1.2.3 [list source [file join $dir msgcat.tcl]]