From f949512269b5b982492006f38968e6639e682a5c Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Fri, 15 May 2015 09:16:18 -0600 Subject: [PATCH] utf8.h: Fix typo in macro name definition The trailing underscore was unintended. --- utf8.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utf8.h b/utf8.h index bcc92b4..d4c8e55 100644 --- a/utf8.h +++ b/utf8.h @@ -558,7 +558,7 @@ case any call to string overloading updates the internal UTF-8 encoding flag. * applicable */ #define UTF8_IS_NONCHAR_GIVEN_THAT_NON_SUPER_AND_GE_PROBLEMATIC(s) \ cBOOL(is_NONCHAR_utf8(s)) -#define UTF8_IS_NONCHAR_(s) \ +#define UTF8_IS_NONCHAR(s) \ UTF8_IS_NONCHAR_GIVEN_THAT_NON_SUPER_AND_GE_PROBLEMATIC(s) #define UNICODE_SURROGATE_FIRST 0xD800 -- 1.8.3.1