summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2012-07-09 14:30:29 -0600
committerKarl Williamson <public@khwilliamson.com>2012-07-24 21:13:47 -0600
commit8ad3d40fd251e4b08593bc80fec6f1c11a187af8 (patch)
tree48555a02da0e1bfde22b21a2d8c597c2041caf27 /handy.h
parentb18192e9ff618ad937b794bbfb2d33a43919e363 (diff)
downloadperl-8ad3d40fd251e4b08593bc80fec6f1c11a187af8.tar.gz
handy.h: Remove duplicated test
This test is duplicated in the called macro
Diffstat (limited to 'handy.h')
-rw-r--r--handy.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/handy.h b/handy.h
index 5eb85414c5..f5083481fe 100644
--- a/handy.h
+++ b/handy.h
@@ -930,7 +930,7 @@ EXTCONST U32 PL_charclass[];
#define isLOWER_uni(c) generic_uni(isLOWER, is_uni_lower, c)
#define isASCII_uni(c) isASCII(c)
/* All controls are in Latin1 */
-#define isCNTRL_uni(c) ((c) < 256 && isCNTRL_L1(c))
+#define isCNTRL_uni(c) isCNTRL_L1(c)
#define isGRAPH_uni(c) generic_uni(isGRAPH, is_uni_graph, c)
#define isPRINT_uni(c) generic_uni(isPRINT, is_uni_print, c)
#define isPUNCT_uni(c) generic_uni(isPUNCT, is_uni_punct, c)