diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-02-27 08:38:19 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-08-29 09:55:59 -0600 |
commit | d95f8b6ab696f65df80deff0ac32dd5be515428b (patch) | |
tree | 5daef5c923aa04a3a23718f44c05ece8532e7a7e /handy.h | |
parent | 6e38d0e56f24932b59ecfe3aa6ad2e166a9e7dfb (diff) | |
download | perl-d95f8b6ab696f65df80deff0ac32dd5be515428b.tar.gz |
handy.h: Remove extraneous parens
Diffstat (limited to 'handy.h')
-rw-r--r-- | handy.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1023,7 +1023,7 @@ EXTCONST U32 PL_charclass[]; # define isUPPER_A(c) _generic_isCC_A(c, _CC_UPPER) # define isWORDCHAR_A(c) _generic_isCC_A(c, _CC_WORDCHAR) # define isXDIGIT_A(c) _generic_isCC(c, _CC_XDIGIT) -# define isIDFIRST_A(c) _generic_isCC_A(c, ( _CC_IDFIRST)) +# define isIDFIRST_A(c) _generic_isCC_A(c, _CC_IDFIRST) /* Either participates in a fold with a character above 255, or is a * multi-char fold */ |