summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-02-03 09:29:32 -0700
committerKarl Williamson <public@khwilliamson.com>2013-02-03 21:41:28 -0700
commitb5864679105af6175b09ab741bac713df8abf7fd (patch)
tree81b7155e4e878a8ec7ede8862dd5def68dc41a9f /embed.h
parentf4f5fe57a6038d0f7d0c320bc9204a232dbd874f (diff)
downloadperl-b5864679105af6175b09ab741bac713df8abf7fd.tar.gz
Add interpolations to regex sets
This commit adds the capability for '(?[ ])' to contain interpolated variables from other '(?[ ])' constructs. A set operation can thus be built up from the composition of other ones, without having to worry about precedence, etc. Thanks to Aaron Crane for suggesting this.
Diffstat (limited to 'embed.h')
-rw-r--r--embed.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed.h b/embed.h
index e9ff0e84b7..0460505e14 100644
--- a/embed.h
+++ b/embed.h
@@ -912,7 +912,7 @@
#define get_invlist_version_id_addr(a) S_get_invlist_version_id_addr(aTHX_ a)
#define get_invlist_zero_addr(a) S_get_invlist_zero_addr(aTHX_ a)
#define grok_bslash_N(a,b,c,d,e,f,g) S_grok_bslash_N(aTHX_ a,b,c,d,e,f,g)
-#define handle_regex_sets(a,b,c,d) S_handle_regex_sets(aTHX_ a,b,c,d)
+#define handle_regex_sets(a,b,c,d,e) S_handle_regex_sets(aTHX_ a,b,c,d,e)
#define invlist_array(a) S_invlist_array(aTHX_ a)
#define invlist_clone(a) S_invlist_clone(aTHX_ a)
#define invlist_extend(a,b) S_invlist_extend(aTHX_ a,b)