summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-03-17 10:36:48 -0600
committerKarl Williamson <khw@cpan.org>2019-03-18 10:40:15 -0600
commit8019f582e520990ebdef662daa658777f3883bc9 (patch)
tree4bd7022f6d2fd4f10e5ffd128fcd3c7c20cbb190 /embed.h
parent15a9bc0dca3bfa92dbfd43a3d9cc0a300e351d36 (diff)
downloadperl-8019f582e520990ebdef662daa658777f3883bc9.tar.gz
regexec.c: Add parameter to static fcn
This parameter will be used to limit how far in the input string to apply the function to. But currently, it is set to the end of the string, so there should be no change from previous behavior.
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 5e87348293..722d1e375c 100644
--- a/embed.h
+++ b/embed.h
@@ -1303,7 +1303,7 @@
#define reghopmaybe3 S_reghopmaybe3
#define reginclass(a,b,c,d,e) S_reginclass(aTHX_ a,b,c,d,e)
#define regmatch(a,b,c) S_regmatch(aTHX_ a,b,c)
-#define regrepeat(a,b,c,d,e) S_regrepeat(aTHX_ a,b,c,d,e _aDEPTH)
+#define regrepeat(a,b,c,d,e,f) S_regrepeat(aTHX_ a,b,c,d,e,f _aDEPTH)
#define regtry(a,b) S_regtry(aTHX_ a,b)
#define to_byte_substr(a) S_to_byte_substr(aTHX_ a)
#define to_utf8_substr(a) S_to_utf8_substr(aTHX_ a)