diff options
author | Karl Williamson <public@khwilliamson.com> | 2010-12-26 10:35:20 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-01-16 19:13:22 -0700 |
commit | 73134a2eb4055c76fe5b154da95e09118f716fd8 (patch) | |
tree | f1166eb556197354bcacdd7ce94ce4b4f27b078e /pp.c | |
parent | a3ab329f3fc9494e700f51c38cef42021c130b6e (diff) | |
download | perl-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 'pp.c')
-rw-r--r-- | pp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5925,7 +5925,7 @@ PP(pp_split) s++; } } - if (RX_EXTFLAGS(rx) & PMf_MULTILINE) { + if (RX_EXTFLAGS(rx) & RXf_PMf_MULTILINE) { multiline = 1; } |