summaryrefslogtreecommitdiff
path: root/handy.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-12-04 13:46:35 -0700
committerKarl Williamson <khw@cpan.org>2019-12-07 15:50:38 -0700
commit8ec0a73627828c366dbcd8351ca24df2c9b39933 (patch)
treed861c64f93345d54261790ba726eae04543533ed /handy.h
parent79bcf1318d6280d492396ce01959aed43fee8707 (diff)
downloadperl-8ec0a73627828c366dbcd8351ca24df2c9b39933.tar.gz
handy.h: Fix typo in little-used macro
This only affected an EBCDIC build where no other tools are around. This is no longer really used. It was used to bootstrap EBCDIC when first porting to it (after the 5.8 series).
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 bac1f83a0f..f10136fc94 100644
--- a/handy.h
+++ b/handy.h
@@ -1540,7 +1540,7 @@ END_EXTERN_C
|| (c) == '\f' || (c) == '\n' || (c) == '\r' \
|| (c) == '\t' || (c) == '\v' \
|| inRANGE((c), 1, 3) /* SOH, STX, ETX */ \
- || (c) == 7 /* U+7F DEL */ \
+ || (c) == 7F /* U+7F DEL */ \
|| inRANGE((c), 0x0E, 0x13) /* SO SI DLE \
DC[1-3] */ \
|| (c) == 0x18 /* U+18 CAN */ \