summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--handy.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/handy.h b/handy.h
index 3d2d46a394..d6205c52fc 100644
--- a/handy.h
+++ b/handy.h
@@ -468,6 +468,9 @@ NOTE: Since some of these are macros, there is no check in those that the
parameter is a char or U8. This means that if called with a larger width
parameter, casts can silently truncate and yield wrong results.
+Also note that these macros are repeated in Devel::PPPort, so should also be
+patched there. The file as of this writing is cpan/Devel-PPPort/parts/inc/misc
+
*/
#define isALNUM(c) (isALPHA(c) || isDIGIT(c) || (c) == '_')