summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-12-20 15:38:33 -0700
committerKarl Williamson <khw@cpan.org>2022-06-12 09:50:10 -0600
commit91456fff21e82fb5e4202c84a0c4ae13dbccdee7 (patch)
tree7106edd960b3070122e28c7f3571baf637aee88b /perl.c
parent5bf5e40b412e024945b916ee4d0a0b8cac2decda (diff)
downloadperl-91456fff21e82fb5e4202c84a0c4ae13dbccdee7.tar.gz
Change handy.h macro names to be C standard conformant
C reserves symbols beginning with underscores for its own use. This commit moves the underscore so it is trailing, which is legal. The symbols changed here are many of the ones in handy.h that have significant uses outside it.
Diffstat (limited to 'perl.c')
-rw-r--r--perl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl.c b/perl.c
index 7ae36f3055..328bccd40c 100644
--- a/perl.c
+++ b/perl.c
@@ -1191,7 +1191,7 @@ perl_destruct(pTHXx)
SvREFCNT_dec(PL_XPosix_ptrs[i]);
PL_XPosix_ptrs[i] = NULL;
- if (i != _CC_CASED) { /* A copy of Alpha */
+ if (i != CC_CASED_) { /* A copy of Alpha */
SvREFCNT_dec(PL_Posix_ptrs[i]);
PL_Posix_ptrs[i] = NULL;
}