diff options
Diffstat (limited to 'Src/options.c')
-rw-r--r-- | Src/options.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Src/options.c b/Src/options.c index d0474498c..89178b313 100644 --- a/Src/options.c +++ b/Src/options.c @@ -603,7 +603,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++; } |