summaryrefslogtreecommitdiff
path: root/regexp.h
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2017-07-24 14:58:58 +0100
committerDavid Mitchell <davem@iabyn.com>2017-07-27 11:30:21 +0100
commitea0673eedc20f778f2cefa666a956a24320bcad3 (patch)
treedb7f157ff377c7b4227875ab7d50ac1c296fb0a8 /regexp.h
parenta885a8e06d234bd9fabda920d61f1e6dd668b5c8 (diff)
downloadperl-ea0673eedc20f778f2cefa666a956a24320bcad3.tar.gz
rename RX_HAS_CUTGROUP() to RXp_HAS_CUTGROUP()
It takes a private/internal regexp* pointer rather than a public REGEXP pointer, so rename it to match the other RXp_ macros. Most RXp_ macros are a variant of an RX_ macro; however, I didn't add an RX_HAS_CUTGROUP() macro - someone can always add that if needed. (There's only one use of RXp_HAS_CUTGROUP in core).
Diffstat (limited to 'regexp.h')
-rw-r--r--regexp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/regexp.h b/regexp.h
index e8758993ad..eca383523f 100644
--- a/regexp.h
+++ b/regexp.h
@@ -474,7 +474,7 @@ and check for NULL.
# define RX_MATCH_TAINTED_off(rx_sv) (RX_EXTFLAGS(rx_sv) &= ~RXf_TAINTED_SEEN)
#endif
-#define RX_HAS_CUTGROUP(prog) ((prog)->intflags & PREGf_CUTGROUP_SEEN)
+#define RXp_HAS_CUTGROUP(prog) ((prog)->intflags & PREGf_CUTGROUP_SEEN)
#define RX_MATCH_TAINTED_set(rx_sv, t) ((t) \
? RX_MATCH_TAINTED_on(rx_sv) \