summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafayette.edu>2010-09-22 13:44:36 -0400
committerAndy Dougherty <doughera@lafayette.edu>2010-09-22 13:44:36 -0400
commit04e98a4df2ab89550ea2ab5f96ddd3932e2e1ec9 (patch)
tree315e2c2bedf6c6b6bfbb24da4fdb3216631cb018 /toke.c
parent2748c776108ea3c2dab18eeb6a710e819486df17 (diff)
downloadperl-04e98a4df2ab89550ea2ab5f96ddd3932e2e1ec9.tar.gz
Extract regcurly as a static inline function.
This patch extracts regcurly from regcomp.c and converts it to a static inline function in a new file dquote_static.c that is now #included by regcomp.c and toke.c. This change will require 'make regen'.
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/toke.c b/toke.c
index c4ff0c25ec..961866bba0 100644
--- a/toke.c
+++ b/toke.c
@@ -39,6 +39,7 @@ Individual members of C<PL_parser> have their own documentation.
#include "EXTERN.h"
#define PERL_IN_TOKE_C
#include "perl.h"
+#include "dquote_static.c"
#define new_constant(a,b,c,d,e,f,g) \
S_new_constant(aTHX_ a,b,STR_WITH_LEN(c),d,e,f, g)