use strict, warnings in the filter code
Karen Etheridge [Sat, 4 Oct 2014 19:30:56 +0000 (12:30 -0700)]
my/filter
my/lib.pm

index b53e3fe..0862e25 100644 (file)
--- a/my/filter
+++ b/my/filter
@@ -1,2 +1,3 @@
+use strict; use warnings;
 print "use strict;\nuse warnings;\n#line 1\n";
 while (<STDIN>) { print }
index eddf4e8..3861292 100644 (file)
--- a/my/lib.pm
+++ b/my/lib.pm
@@ -1,2 +1,3 @@
+use strict; use warnings;
 use lib::with::preamble 'use strict;', 'lib';
 1;