summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2018-05-20 15:23:38 -0600
committerKarl Williamson <khw@cpan.org>2018-06-25 08:18:20 -0600
commit1e9811964d1783bc31543ce02e89d4130628abb5 (patch)
tree02fa891c76c0700d225991fc0f2578df079707c2
parentfe2048ea01976fb05fb93467d0b78e2b55387320 (diff)
downloadperl-1e9811964d1783bc31543ce02e89d4130628abb5.tar.gz
handy.h: Remove obsolete comment
-rw-r--r--handy.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/handy.h b/handy.h
index 9ba05de8d3..1f7ab8482c 100644
--- a/handy.h
+++ b/handy.h
@@ -1851,13 +1851,6 @@ _generic_utf8_safe(classnum, p, e, _is_utf8_FOO_with_len(classnum, p, e))
? 0 /* Note that doesn't check validity for latin1 */ \
: above_latin1)
-/* NOTE that some of these macros have very similar ones in regcharclass.h.
- * For example, there is (at the time of this writing) an 'is_SPACE_utf8()'
- * there, differing in name only by an underscore from the one here
- * 'isSPACE_utf8(). The difference is that the ones here are probably more
- * efficient and smaller, using an O(1) array lookup for Latin1-range code
- * points; the regcharclass.h ones are implemented as a series of
- * "if-else-if-else ..." */
#define isALPHA_utf8(p) _generic_utf8(ALPHA, p)
#define isALPHANUMERIC_utf8(p) _generic_utf8(ALPHANUMERIC, p)