and make the locale string checks use the #defined strcasestr() alias if

necessary


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2402 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
David Lawrence Ramsey 2005-03-20 07:26:47 +00:00
parent adc30a839b
commit 3dd744f392
1 changed files with 1 additions and 7 deletions

View File

@ -3983,14 +3983,8 @@ int main(int argc, char **argv)
char *locale = setlocale(LC_ALL, ""); char *locale = setlocale(LC_ALL, "");
if (locale == NULL || (locale != NULL && if (locale == NULL || (locale != NULL &&
#ifdef HAVE_STRCASESTR
strcasestr(locale, "UTF8") == NULL && strcasestr(locale, "UTF8") == NULL &&
strcasestr(locale, "UTF-8") == NULL strcasestr(locale, "UTF-8") == NULL))
#else
nstrcasestr(locale, "UTF8") == NULL &&
nstrcasestr(locale, "UTF-8") == NULL
#endif
))
SET(NO_UTF8); SET(NO_UTF8);
#ifdef USE_SLANG #ifdef USE_SLANG