summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2014-10-08 11:12:12 -0600
committerKarl Williamson <khw@cpan.org>2014-10-21 09:26:49 -0600
commit687c8d01ec65dc1466743a4045ad091451aedc41 (patch)
treed676c313d06cf0aeb37648646488b626f8fad60f /handy.h
parentea5bc90f605c42b5ba11bf0aa5b9df6e7d9ec3e7 (diff)
downloadperl-687c8d01ec65dc1466743a4045ad091451aedc41.tar.gz
handy.h: Comments only
Removes obsolete comment, and adds text to make it easier to find matching #else and #endif of a #if
Diffstat (limited to 'handy.h')
-rw-r--r--handy.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/handy.h b/handy.h
index 5e0c86e72e..3e6ccad92a 100644
--- a/handy.h
+++ b/handy.h
@@ -913,7 +913,6 @@ patched there. The file as of this writing is cpan/Devel-PPPort/parts/inc/misc
* digits */
#define isOCTAL_A(c) cBOOL(FITS_IN_8_BITS(c) && (0xF8 & (c)) == '0')
-/* ASCII range only */
#ifdef H_PERL /* If have access to perl.h, lookup in its table */
/* Character class numbers. For internal core Perl use only. The ones less
@@ -1102,7 +1101,7 @@ EXTCONST U32 PL_charclass[];
_generic_isCC(c, _CC_IS_IN_SOME_FOLD)
# define _IS_MNEMONIC_CNTRL_ONLY_FOR_USE_BY_REGCOMP_DOT_C(c) \
_generic_isCC(c, _CC_MNEMONIC_CNTRL)
-#else /* else we don't have perl.h */
+#else /* else we don't have perl.h H_PERL */
/* If we don't have perl.h, we are compiling a utility program. Below we
* hard-code various macro definitions that wouldn't otherwise be available
@@ -1205,7 +1204,7 @@ EXTCONST U32 PL_charclass[];
(FITS_IN_8_BITS(c) && S_bootstrap_ctype((U8) (c), (classnum), TRUE))
# define _generic_isCC_A(c, classnum) \
(FITS_IN_8_BITS(c) && S_bootstrap_ctype((U8) (c), (classnum), FALSE))
-#endif /* End of no perl.h */
+#endif /* End of no perl.h H_PERL */
#define isALPHANUMERIC(c) isALPHANUMERIC_A(c)
#define isALPHA(c) isALPHA_A(c)