From a0a9d4c6f42bbb18c2f93af27382e2526207259f Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 2 Dec 2004 06:54:16 +0000 Subject: [PATCH] (compare_files): Assume setlocale exists. --- src/comm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comm.c b/src/comm.c index 972aefbbec..c7a5cd002e 100644 --- a/src/comm.c +++ b/src/comm.c @@ -187,7 +187,7 @@ compare_files (char **infiles) order = -1; else { - if (HAVE_SETLOCALE && hard_LC_COLLATE) + if (hard_LC_COLLATE) order = xmemcoll (thisline[0]->buffer, thisline[0]->length - 1, thisline[1]->buffer, thisline[1]->length - 1); else -- 2.47.2