From: Matt S Trout Date: Sat, 13 Feb 2010 20:02:55 +0000 (+0000) Subject: move Dwarn_only and DwarnS_only into @EXPORT and add to Changes X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FData-Dumper-Concise.git;a=commitdiff_plain;h=9991a059afc49cc162b8194dfa2d356170e96233 move Dwarn_only and DwarnS_only into @EXPORT and add to Changes --- diff --git a/Changes b/Changes index eb704ca..4f1f4b3 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,6 @@ + - add Dwarn_only { ... } (...) and DwarnS_only { ... } $foo to + allow filtering of the data before Dumper-ing it + 1.200 Feb 13 2010 - make sure Devel::Dwarn::Dwarn and Devel::Dwarn::DwarnS work diff --git a/lib/Data/Dumper/Concise/Sugar.pm b/lib/Data/Dumper/Concise/Sugar.pm index 9a514b2..cae80af 100644 --- a/lib/Data/Dumper/Concise/Sugar.pm +++ b/lib/Data/Dumper/Concise/Sugar.pm @@ -7,9 +7,8 @@ use Data::Dumper::Concise (); BEGIN { @ISA = qw(Exporter) } -@EXPORT = qw(Dwarn DwarnS); +@EXPORT = qw(Dwarn DwarnS Dwarn_only DwarnS_only); -@EXPORT_OK = qw(Dwarn_only DwarnS_only); sub Dwarn { warn Data::Dumper::Concise::Dumper @_; @_ }