summaryrefslogtreecommitdiff
path: root/universal.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2010-12-26 10:35:20 -0700
committerKarl Williamson <public@khwilliamson.com>2011-01-16 19:13:22 -0700
commit73134a2eb4055c76fe5b154da95e09118f716fd8 (patch)
treef1166eb556197354bcacdd7ce94ce4b4f27b078e /universal.c
parenta3ab329f3fc9494e700f51c38cef42021c130b6e (diff)
downloadperl-73134a2eb4055c76fe5b154da95e09118f716fd8.tar.gz
CH] Change usage of regex/op common to common names
This patch changes the core functions to use the common names for the fields that are shared between op.c and regcomp.c, just for consistency of using one name throughout the core for the same thing. A grep of cpan shows that both names are used in various modules; so both names must be retained.
Diffstat (limited to 'universal.c')
-rw-r--r--universal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/universal.c b/universal.c
index 96a92cf994..07bbe96504 100644
--- a/universal.c
+++ b/universal.c
@@ -1174,7 +1174,7 @@ XS(XS_re_regexp_pattern)
left += len;
}
fptr = INT_PAT_MODS;
- match_flags = (U16)((RX_EXTFLAGS(re) & PMf_COMPILETIME)
+ match_flags = (U16)((RX_EXTFLAGS(re) & RXf_PMf_COMPILETIME)
>> RXf_PMf_STD_PMMOD_SHIFT);
while((ch = *fptr++)) {