From 5625494c13f92f83294785e3691a89450f40c21a Mon Sep 17 00:00:00 2001 From: drh Date: Wed, 17 Jul 2002 19:14:47 +0000 Subject: Fix a comment that was causing problems for programs (like "mktclapp") that embed the initialization script in strings. No changes to code. --- ChangeLog | 6 ++++++ library/msgcat/msgcat.tcl | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index da88795..8b3b350 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-07-17 D. Richard Hipp + + * library/msgcat/msgcat.tcl: fix a comment that was causing + problems for programs (ex: mktclapp) that embed the initialization + scripts in strings. + 2002-07-17 Miguel Sofer * generic/tclInt.decls: diff --git a/library/msgcat/msgcat.tcl b/library/msgcat/msgcat.tcl index fdfa091..771511f 100644 --- a/library/msgcat/msgcat.tcl +++ b/library/msgcat/msgcat.tcl @@ -10,7 +10,7 @@ # 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.15 2002/06/17 16:37:11 dgp Exp $ +# RCS: @(#) $Id: msgcat.tcl,v 1.16 2002/07/17 19:14:52 drh Exp $ package require Tcl 8.2 package provide msgcat 1.3 @@ -387,14 +387,14 @@ proc msgcat::ConvertLocale {value} { # Convert to form: $language[_$territory][_$modifier] # # Comment out expanded RE version -- bugs alleged - #regexp -expanded { + # regexp -expanded { # ^ # Match all the way to the beginning # ([^_.@]*) # Match "lanugage"; ends with _, ., or @ # (_([^.@]*))? # Match (optional) "territory"; starts with _ # ([.]([^@]*))? # Match (optional) "codeset"; starts with . # (@(.*))? # Match (optional) "modifier"; starts with @ # $ # Match all the way to the end - #} $value -> language _ territory _ codeset _ modifier + # } $value -> language _ territory _ codeset _ modifier regexp {^([^_.@]*)(_([^.@]*))?([.]([^@]*))?(@(.*))?$} $value \ -> language _ territory _ codeset _ modifier set ret $language -- cgit v0.12