Subject: Collected Debian patches for News::Article
Author: Russ Allbery <rra@debian.org>

This patch collects all the modifications for the Debian packaging of
News::Article.  Currently, this just includes fixes to the POD syntax of
the documentation of each module and a fix for calling defined on an
array.

All Debian changes are collected into a single patch because the packaging
is done in Git.  For more detailed change history and separate change
sets, clone the Git repository.  See the Vcs-Git header in the source
package for the URL.

--- libnews-article-perl-1.27.orig/Article.pm
+++ libnews-article-perl-1.27/Article.pm
@@ -1571,6 +1571,8 @@ __END__
 
 ###########################################################################
 
+=back
+
 =head1 CAVEATS
 
 This module is not fully transparent. In particular:
--- libnews-article-perl-1.27.orig/AutoReply.pm
+++ libnews-article-perl-1.27/AutoReply.pm
@@ -171,6 +171,8 @@ __END__
 #
 ###########################################################################
 
+=back
+
 =head1 AUTHOR
 
 Andrew Gierth <andrew@erlenstar.demon.co.uk>
--- libnews-article-perl-1.27.orig/FormArticle.pm
+++ libnews-article-perl-1.27/FormArticle.pm
@@ -148,7 +148,7 @@ sub subst_array
 	}
 	if (ref(\$val) eq 'GLOB')
 	{
-	    $val = defined(@{*$val}) ? \@{*$val} : undef;
+	    $val = @{*$val} ? \@{*$val} : undef;
 	}
 	elsif (ref($val) eq 'CODE')
 	{
@@ -183,6 +183,8 @@ sub process_line
 
 __END__
 
+=back
+
 =head1 AUTHOR
 
 Andrew Gierth <andrew@erlenstar.demon.co.uk>
--- libnews-article-perl-1.27.orig/FormReply.pm
+++ libnews-article-perl-1.27/FormReply.pm
@@ -85,6 +85,8 @@ __END__
 #
 ###########################################################################
 
+=back
+
 =head1 AUTHOR
 
 Andrew Gierth <andrew@erlenstar.demon.co.uk>
