summaryrefslogtreecommitdiff
path: root/op.c
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 /op.c
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 'op.c')
-rw-r--r--op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index 3121cb49d1..d8140447f5 100644
--- a/op.c
+++ b/op.c
@@ -4364,7 +4364,7 @@ Perl_vload_module(pTHX_ U32 flags, SV *name, SV *ver, va_list *args)
ENTER;
SAVEVPTR(PL_curcop);
- lex_start(NULL, NULL, FALSE);
+ lex_start(NULL, NULL);
utilize(!(flags & PERL_LOADMOD_DENY), start_subparse(FALSE, 0),
veop, modname, imop);
LEAVE;