support broken LC_CTYPE in OSX
This commit is contained in:
parent
2665f71112
commit
ba07371328
@ -846,16 +846,26 @@ initEncoding(void)
|
|||||||
|
|
||||||
if ( LD )
|
if ( LD )
|
||||||
{ if ( !LD->encoding )
|
{ if ( !LD->encoding )
|
||||||
{ char *enc;
|
{ char *enc, *encp;
|
||||||
|
|
||||||
if ( !init_locale() )
|
if ( !init_locale() )
|
||||||
{ LD->encoding = ENC_ISO_LATIN_1;
|
{ LD->encoding = ENC_ISO_LATIN_1;
|
||||||
} else if ( (enc = setlocale(LC_CTYPE, NULL)) )
|
} else if ( (enc = setlocale(LC_CTYPE, NULL)) )
|
||||||
{ LD->encoding = ENC_ANSI; /* text encoding */
|
{ LD->encoding = ENC_ANSI; /* text encoding */
|
||||||
|
|
||||||
if ( (enc = strchr(enc, '.')) )
|
if ( (encp = strchr(enc, '.')) )
|
||||||
{ const enc_map *m;
|
{ const enc_map *m;
|
||||||
enc++; /* skip '.' */
|
encp++; /* skip '.' */
|
||||||
|
|
||||||
|
for ( m=map; m->name; m++ )
|
||||||
|
{ if ( strcmp(encp, m->name) == 0 )
|
||||||
|
{ LD->encoding = m->encoding;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
/* vsc: just test LC_CTYPE, works on Macs */
|
||||||
|
const enc_map *m;
|
||||||
|
|
||||||
for ( m=map; m->name; m++ )
|
for ( m=map; m->name; m++ )
|
||||||
{ if ( strcmp(enc, m->name) == 0 )
|
{ if ( strcmp(enc, m->name) == 0 )
|
||||||
|
Reference in New Issue
Block a user