From 3dd744f392de5f2f05615cd951d0b9be2a4cf897 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Sun, 20 Mar 2005 07:26:47 +0000 Subject: [PATCH] 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 --- src/nano.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/nano.c b/src/nano.c index 1b927f7e..3f26c7b2 100644 --- a/src/nano.c +++ b/src/nano.c @@ -3983,14 +3983,8 @@ int main(int argc, char **argv) char *locale = setlocale(LC_ALL, ""); if (locale == NULL || (locale != NULL && -#ifdef HAVE_STRCASESTR strcasestr(locale, "UTF8") == NULL && - strcasestr(locale, "UTF-8") == NULL -#else - nstrcasestr(locale, "UTF8") == NULL && - nstrcasestr(locale, "UTF-8") == NULL -#endif - )) + strcasestr(locale, "UTF-8") == NULL)) SET(NO_UTF8); #ifdef USE_SLANG -- 2.39.5