From: Nicholas Clark Date: Fri, 11 Jan 2008 20:27:23 +0000 (+0000) Subject: Well, I know *something* passed make test from a clean build before X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=200ff815b6dbb5a3e999662953294bc7db3f52f6;p=p5sagit%2Fp5-mst-13.2.git Well, I know *something* passed make test from a clean build before change 32961, and I thought that it was the right thing, but I guess not. It should have read like this. p4raw-id: //depot/perl@32962 --- diff --git a/regexp.h b/regexp.h index 9bd4d2d..b09bebd 100644 --- a/regexp.h +++ b/regexp.h @@ -398,11 +398,11 @@ and check for NULL. assert(SvTYPE(thwape) == SVt_REGEXP); \ &SvANY(thwape)->subbeg; \ })) -# define RX_SUBBEG(prog) \ +# define RX_OFFS(prog) \ (*({ \ REGEXP *const thwape = (prog); \ assert(SvTYPE(thwape) == SVt_REGEXP); \ - &SvANY(thwape)->subbeg; \ + &SvANY(thwape)->offs; \ })) # define RX_NPARENS(prog) \ (*({ \