diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-01-06 20:25:24 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-01-11 11:50:35 -0700 |
commit | 00ce556345c5faa3eb42f47f2a510d07b5f3d7c8 (patch) | |
tree | 2c1a11fb68fff6076f1d8ee3102611ce225635f6 /embed.h | |
parent | 6b976e32dcccdff3dde7682ad9314dc5cd918e17 (diff) | |
download | perl-00ce556345c5faa3eb42f47f2a510d07b5f3d7c8.tar.gz |
Revise calling sequences for grok_bslash_[xo]
By passing the address of the parse pointer, the functions can advance
it, eliminating a parameter to the function, and simplifying the code in
the caller.
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) S_grok_bslash_o(aTHX_ a,b,c,d,e) -#define grok_bslash_x(a,b,c,d,e) S_grok_bslash_x(aTHX_ a,b,c,d,e) +#define grok_bslash_o(a,b,c,d) S_grok_bslash_o(aTHX_ a,b,c,d) +#define grok_bslash_x(a,b,c,d) S_grok_bslash_x(aTHX_ a,b,c,d) #define regcurly(a) S_regcurly(aTHX_ a) # endif # if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_UTF8_C) |