From 6d83c58a4520cd35bbcb389a11ced43b3ad33771 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sun, 2 Dec 2012 12:17:16 -0700 Subject: handy.h: Remove unused macro This macro expands to a function or macro call that does not exist, so this macro itself can't be being used by anyone. It also doesn't fit the paradigm of the other macros above it, being defined in terms of uni instead of uvchr; nor does it really gain anything, since \s is a posix space under locale. The \f also appears to be a typo, based on the commit message, it should have been \v. --- handy.h | 1 - 1 file changed, 1 deletion(-) (limited to 'handy.h') diff --git a/handy.h b/handy.h index dee0bff91d..3fab9be1bb 100644 --- a/handy.h +++ b/handy.h @@ -966,7 +966,6 @@ EXTCONST U32 PL_charclass[]; #define isPRINT_LC_uvchr(c) (c < 256 ? isPRINT_LC(c) : is_uni_print_lc(c)) #define isPUNCT_LC_uvchr(c) (c < 256 ? isPUNCT_LC(c) : is_uni_punct_lc(c)) -#define isPSXSPC_LC_uni(c) (isSPACE_LC_uni(c) ||(c) == '\f') #define isBLANK_LC_uni(c) isBLANK(c) /* could be wrong */ /* For internal core Perl use only. If the input is in the Latin1 range, use -- cgit v1.2.1