In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/19949523b593c5b1e189da235f8065e235ee68e0?hp=c5d7841e4eb4cac218f8e76e74844b681396e3b2>
- Log ----------------------------------------------------------------- commit 19949523b593c5b1e189da235f8065e235ee68e0 Author: David Mitchell <[email protected]> Date: Mon Apr 4 14:51:40 2016 +0100 Follow-up to previous Solaris/S_regmatch commit PL_charclass is the thing being temporarily #defined to something else, so it's the thing that needs #undeffing at the end, not pl_charclass_dup. Doesn't make any difference at the moment, but would if at some point a function following S_regmatch() started making use of PL_charclass. ----------------------------------------------------------------------- Summary of changes: regexec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regexec.c b/regexec.c index 9acb5a0..cdaa95c 100644 --- a/regexec.c +++ b/regexec.c @@ -8324,7 +8324,7 @@ NULL } } #ifdef SOLARIS_BAD_OPTIMIZER -# undef pl_charclass_dup +# undef PL_charclass #endif /* -- Perl5 Master Repository
