diff options
author | Zefram <zefram@fysh.org> | 2010-10-13 21:48:49 +0100 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-10-21 05:52:57 -0700 |
commit | 8eaa0acf70f47cc5d3ed085b62e8d46cbc245651 (patch) | |
tree | edc0d68a0337b2dd2ead7f97324e5f304f65d4b3 /proto.h | |
parent | 805700c1a37c475915b7e2c565a2b4ac1dbe5a97 (diff) | |
download | perl-8eaa0acf70f47cc5d3ed085b62e8d46cbc245651.tar.gz |
add lex_start to the API
lex_start() is added to the API, marked experimental, and documented.
It also gains a flags parameter for foreseeable future use.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1794,7 +1794,7 @@ PERL_CALLCONV void Perl_lex_read_to(pTHX_ char* ptr) assert(ptr) PERL_CALLCONV I32 Perl_lex_read_unichar(pTHX_ U32 flags); -PERL_CALLCONV void Perl_lex_start(pTHX_ SV* line, PerlIO *rsfp); +PERL_CALLCONV void Perl_lex_start(pTHX_ SV* line, PerlIO *rsfp, U32 flags); PERL_CALLCONV void Perl_lex_stuff_pv(pTHX_ const char* pv, U32 flags) __attribute__nonnull__(pTHX_1); #define PERL_ARGS_ASSERT_LEX_STUFF_PV \ |