diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-08-15 11:19:02 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-09-24 11:36:16 -0600 |
commit | 1ca93ef1073eb2a9ee4f9f3fb6157e426f634382 (patch) | |
tree | c0ac5406e161e710f43d53b0656b60d90b2c42e7 /embed.h | |
parent | 01822b745cf22c5f129312061022b109fc43bf61 (diff) | |
download | perl-1ca93ef1073eb2a9ee4f9f3fb6157e426f634382.tar.gz |
regcomp.c: Add parameter to static function
This parameter will be used in future commits. This commit is really
only to make the difference listing smaller in those, by committing
separately just the book-keeping parts. This parameter requires also
passing the aTHX_ thread parameter
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -944,7 +944,7 @@ #define regwhite S_regwhite #define scan_commit(a,b,c,d) S_scan_commit(aTHX_ a,b,c,d) #define set_ANYOF_arg(a,b,c,d,e,f) S_set_ANYOF_arg(aTHX_ a,b,c,d,e,f) -#define ssc_and S_ssc_and +#define ssc_and(a,b,c) S_ssc_and(aTHX_ a,b,c) #define ssc_anything S_ssc_anything #define ssc_init S_ssc_init #define ssc_is_anything S_ssc_is_anything |