projects
/
p5sagit/Distar.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
c789d7d
)
correctly apply fatal warnings to caller
Graham Knop [Sat, 1 Mar 2014 06:53:19 +0000 (
01:53
-0500)]
lib/Distar.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/Distar.pm
b/lib/Distar.pm
index
a06fb3f
..
106e3ff
100644
(file)
--- a/
lib/Distar.pm
+++ b/
lib/Distar.pm
@@
-17,7
+17,8
@@
our @EXPORT = qw(
);
sub import {
- strictures->import;
+ strict->import;
+ warnings->import(FATAL => 'all');
shift->export_to_level(1,@_);
}