This is an automated email from the git hooks/post-receive script. abe pushed a commit to annotated tag 2.001001 in repository libdist-zilla-plugin-test-podspelling-perl.
commit 06985fac75031dfa3096566a36319edb73fec783 Author: Caleb Cushing <[email protected]> Date: Tue Aug 2 05:00:39 2011 -0500 end regular expressions with /xms Signed-off-by: Caleb Cushing <[email protected]> --- lib/Dist/Zilla/Plugin/Test/PodSpelling.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Dist/Zilla/Plugin/Test/PodSpelling.pm b/lib/Dist/Zilla/Plugin/Test/PodSpelling.pm index 7eb7f15..6a5e7b1 100644 --- a/lib/Dist/Zilla/Plugin/Test/PodSpelling.pm +++ b/lib/Dist/Zilla/Plugin/Test/PodSpelling.pm @@ -33,8 +33,8 @@ around add_file => sub { # automatically add author names to stopwords for (@{ $self->zilla->authors }) { local $_ = $_; # we don't want to modify $_ in-place - s/<.*?>//g; - push @{ $self->stopwords }, /(\w{2,})/g; + s/<.*?>//gxms; + push @{ $self->stopwords }, /(\w{2,})/gxms; } if (@{ $self->stopwords } > 0) { $add_stopwords = 'add_stopwords(<DATA>);'; -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libdist-zilla-plugin-test-podspelling-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
