summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorZefram <zefram@fysh.org>2010-10-13 19:05:19 +0100
committerFather Chrysostomos <sprout@cpan.org>2010-10-21 05:52:30 -0700
commitf07ec6dd59215a56bc1159449a9631be7a02a94d (patch)
tree11506817a1f4546234403635605c632e58a24f2b /proto.h
parenta3a44df66ac2cb0beb603b3dd9697fd81cfcfb30 (diff)
downloadperl-f07ec6dd59215a56bc1159449a9631be7a02a94d.tar.gz
remove filter inheritance option from lex_start
The only uses of lex_start that had the new_filter parameter false, to make the new lexer context share source filters with the previous lexer context, were uses with rsfp null, which therefore never invoked source filters. Inheriting source filters from a logically unrelated file seems like a silly idea anyway.
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index fb3ed70f8f..eb9d037ad1 100644
--- a/proto.h
+++ b/proto.h
@@ -1795,7 +1795,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, bool new_filter);
+PERL_CALLCONV void Perl_lex_start(pTHX_ SV* line, PerlIO *rsfp);
PERL_CALLCONV void Perl_lex_stuff_pv(pTHX_ const char* pv, U32 flags)
__attribute__nonnull__(pTHX_1);
#define PERL_ARGS_ASSERT_LEX_STUFF_PV \