diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-05-28 09:38:23 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-07-03 14:05:45 -0600 |
commit | 060b7a350d57eeb61e809e9a5b10a868aa45de96 (patch) | |
tree | 4d9b3d6198914fcaffdecb8842e7a38702118143 /regcomp.c | |
parent | 6d63a9fbb4876bacc5281c728d04ce09efa52d81 (diff) | |
download | perl-060b7a350d57eeb61e809e9a5b10a868aa45de96.tar.gz |
regcomp.c: #undef after finished
regcomp.c has a subsection dealing with the implementation of the
inversion list class(-like object). Undef its macros so they
can't possibly interfere with the rest of regcomp.c
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -6376,6 +6376,8 @@ S_add_cp_to_invlist(pTHX_ SV* invlist, const UV cp) { return add_range_to_invlist(invlist, cp, cp); } +#undef INVLIST_INITIAL_LENGTH + /* End of inversion list object */ /* |