This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

[PATCH] cs_CZ fix


Hi!

I guess this one is obvious, yes/no regexes were missing initial ^
BTW: There are a couple of other locales which have the same problem, maybe
they should be changed as well.

2001-01-23  Jakub Jelinek  <jakub@redhat.com>

	* locales/cs_CZ (yesexpr, noexpr): Add caret prefix.
	Patch by Petr Cech <cech@atrey.karlin.mff.cuni.cz>.

--- libc/localedata/locales/cs_CZ.jj	Wed Jan 10 15:32:37 2001
+++ libc/localedata/locales/cs_CZ	Tue Jan 23 23:46:44 2001
@@ -2311,8 +2311,8 @@ END LC_CTYPE
 
 LC_MESSAGES
 
-yesexpr		"<U005B><U0061><U0041><U0079><U0059><U005D><U002E><U002A>"
-noexpr  	"<U005B><U006E><U004E><U005D><U002E><U002A>"
+yesexpr		"<U005E><U005B><U0061><U0041><U0079><U0059><U005D><U002E><U002A>"
+noexpr  	"<U005E><U005B><U006E><U004E><U005D><U002E><U002A>"
 yesstr		"<U0061><U006E><U006F>"
 nostr		"<U006E><U0065>"
 

	Jakub

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]