In perl.git, the branch blead has been updated <https://perl5.git.perl.org/perl.git/commitdiff/4b7718d6473358b565848ae4b0eccda8315d96e6?hp=0e9b0dc26af667dfb49d2d2a9537ebda6f50c6db>
- Log ----------------------------------------------------------------- commit 4b7718d6473358b565848ae4b0eccda8315d96e6 Author: Karl Williamson <[email protected]> Date: Mon Aug 26 10:02:28 2019 -0600 regcomp.c: Add FAIL3 macro This should have been included in 0e9b0dc26af667dfb49d2d2a9537ebda6f50c6db ----------------------------------------------------------------------- Summary of changes: regcomp.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/regcomp.c b/regcomp.c index f7164ed0a8..6aea5c4ff5 100644 --- a/regcomp.c +++ b/regcomp.c @@ -753,6 +753,10 @@ static const scan_data_t zero_scan_data = { Perl_croak(aTHX_ msg " in regex m/%" UTF8f "%s/", \ arg, UTF8fARG(UTF, len, RExC_precomp), ellipses)) +#define FAIL3(msg,arg1,arg2) _FAIL( \ + Perl_croak(aTHX_ msg " in regex m/%" UTF8f "%s/", \ + arg1, arg2, UTF8fARG(UTF, len, RExC_precomp), ellipses)) + /* * Simple_vFAIL -- like FAIL, but marks the current location in the scan */ -- Perl5 Master Repository
