1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-07 21:31:17 +02:00

Merge of 23219: Fix lower casing of option names in some locales.

This commit is contained in:
Paul Ackersviller 2007-11-12 04:33:49 +00:00
parent 31e0eee234
commit 56d34005d5

View file

@ -589,7 +589,14 @@ optlookup(char const *name)
if (*t == '_')
chuck(t);
else {
*t = tulower(*t);
/*
* Some locales (in particular tr_TR.UTF-8) may
* have non-standard mappings of ASCII characters,
* so be careful. Option names must be ASCII so
* we don't need to be too clever.
*/
if (*t >= 'A' && *t <= 'Z')
*t = (*t - 'A') + 'a';
t++;
}