From 0eeb2ffe7fa9e1086a7d2c05d8f4ec5ecde95ae3 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sat, 23 Nov 2013 09:55:04 -0700 Subject: [PATCH] handy.h: Remove duplicate line Two adjacent lines were identical. Only one is needed. --- handy.h | 1 - 1 file changed, 1 deletion(-) diff --git a/handy.h b/handy.h index e7e8ca3..14faefa 100644 --- 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)) -- 2.7.4