summaryrefslogtreecommitdiff
path: root/regexp.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-01-11 20:27:23 +0000
committerNicholas Clark <nick@ccl4.org>2008-01-11 20:27:23 +0000
commit200ff815b6dbb5a3e999662953294bc7db3f52f6 (patch)
treed9402d7b8107e46f7efb7a0025224e72d2edc272 /regexp.h
parent4450b6304425eed02bdbb4c8eaf1732145082409 (diff)
downloadperl-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/regexp.h b/regexp.h
index 9bd4d2d310..b09bebdfd1 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) \
(*({ \