summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-01-07 08:23:58 -0700
committerKarl Williamson <public@khwilliamson.com>2013-01-11 11:50:36 -0700
commit17896a857f42d1297358c97b97ee592b824c0c10 (patch)
tree66919a48ab65650d3a76c5bf4a5242789e173695 /embed.h
parent344451ec0ac464dfefc065162e19e505c7aa8c56 (diff)
downloadperl-17896a857f42d1297358c97b97ee592b824c0c10.tar.gz
grok_bslash_[ox]: Add param to silence non-portable warnings
If a hex or octal number is too big to fit in a 32 bit word, grok_oct and grok_hex by default output a warning that it is a non-portable value. This new parameter to the grok_bslash functions can cause them to shut up those warnings. This is currently unused, but will be needed in future commits.
Diffstat (limited to 'embed.h')
-rw-r--r--embed.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/embed.h b/embed.h
index 125c6a706a..86d9006fc1 100644
--- a/embed.h
+++ b/embed.h
@@ -959,8 +959,8 @@
# endif
# if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_TOKE_C)
#define grok_bslash_c(a,b,c) S_grok_bslash_c(aTHX_ a,b,c)
-#define grok_bslash_o(a,b,c,d,e,f) S_grok_bslash_o(aTHX_ a,b,c,d,e,f)
-#define grok_bslash_x(a,b,c,d,e,f) S_grok_bslash_x(aTHX_ a,b,c,d,e,f)
+#define grok_bslash_o(a,b,c,d,e,f,g) S_grok_bslash_o(aTHX_ a,b,c,d,e,f,g)
+#define grok_bslash_x(a,b,c,d,e,f,g) S_grok_bslash_x(aTHX_ a,b,c,d,e,f,g)
#define regcurly(a) S_regcurly(aTHX_ a)
# endif
# if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_UTF8_C)