diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-01-11 20:27:23 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-01-11 20:27:23 +0000 |
commit | 200ff815b6dbb5a3e999662953294bc7db3f52f6 (patch) | |
tree | d9402d7b8107e46f7efb7a0025224e72d2edc272 /regexp.h | |
parent | 4450b6304425eed02bdbb4c8eaf1732145082409 (diff) | |
download | perl-200ff815b6dbb5a3e999662953294bc7db3f52f6.tar.gz |
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
Diffstat (limited to 'regexp.h')
-rw-r--r-- | regexp.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) \ (*({ \ |