From ac42c1a72572edcb1a27514125588ed729c62728 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 9 Sep 2000 15:58:03 +0000 Subject: [PATCH] Rename ISASCII to IN_CTYPE_DOMAIN. --- lib/fnmatch.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/fnmatch.c b/lib/fnmatch.c index d993633..eb45e01 100644 --- a/lib/fnmatch.c +++ b/lib/fnmatch.c @@ -40,12 +40,12 @@ # if defined STDC_HEADERS || !defined isascii -# define ISASCII(c) 1 +# define IN_CTYPE_DOMAIN(c) 1 # else -# define ISASCII(c) isascii(c) +# define IN_CTYPE_DOMAIN(c) isascii(c) # endif -# define ISUPPER(c) (ISASCII (c) && isupper (c)) +# define ISUPPER(c) (IN_CTYPE_DOMAIN (c) && isupper (c)) # ifndef errno -- 2.7.4