handy.h: Remove duplicate line
authorKarl Williamson <public@khwilliamson.com>
Sat, 23 Nov 2013 16:55:04 +0000 (09:55 -0700)
committerKarl Williamson <public@khwilliamson.com>
Tue, 26 Nov 2013 02:40:30 +0000 (19:40 -0700)
Two adjacent lines were identical.  Only one is needed.

handy.h

diff --git a/handy.h b/handy.h
index e7e8ca3..14faefa 100644 (file)
--- a/handy.h
+++ b/handy.h
@@ -1071,7 +1071,6 @@ EXTCONST U32 PL_charclass[];
         /* Use the native functions.  They likely will return false for all
          * non-ASCII values, but this makes sure */
 #       define isALPHA_A(c)    (isASCII(c) && isalpha(c))
-#       define isALPHA_A(c)    (isASCII(c) && isalpha(c))
 #       define isALPHANUMERIC_A(c) (isASCII(c) && isalnum(c))
 #       define isCNTRL_A(c)    (isASCII(c) && iscntrl(c))
 #       define isDIGIT_A(c)    (isASCII(c) && isdigit(c))