does a leading space make any difference?
[privoxy.git] / utils / docbook2man / docbook2man-spec.pl
index 4f3b81d..c6c88c8 100644 (file)
@@ -52,7 +52,7 @@ Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 
 =cut
 
-# $Id: docbook2man-spec.pl,v 1.1.2.1 2002/08/11 20:01:30 hal9 Exp $
+# $Id: docbook2man-spec.pl,v 1.4 2006/07/18 14:49:14 david__schmidt Exp $
 
 use SGMLS;                     # Use the SGMLS package.
 use SGMLS::Output;             # Use stack-based output.
@@ -259,11 +259,8 @@ sgml('</REFMETA>', sub {
        push_output('file', "$manpage_title.$manpage_sect");
 
        output <<_END_BANNER;
-.\\" This manpage has been automatically generated by docbook2man 
-.\\" from a DocBook document.  This tool can be found at:
-.\\" <http://shell.ipoline.com/~elmert/comp/docbook2X/> 
-.\\" Please send any bug reports, improvements, comments, patches, 
-.\\" etc. to Steve Cheng <steve\@ggi-project.org>.
+.\\" This manpage has been generated by docbook2man-spec.pl
+.\\" (included in the Privoxy source tarball) from a DocBook document.
 _END_BANNER
 
        my $manpage_date = `date "+%d %B %Y"`;
@@ -1216,6 +1213,7 @@ sgml('sdata',sub
 {
        if($_[0] =~ /\[minus \]/) { output "-"; }
        elsif($_[0] =~ /\[copy  \]/) { output "(C)"; }
+       elsif($_[0] =~ /\[nbsp  \]/) { output " "; }
        else { die "Unknown SDATA: " . $_[0]; }
 });
 sgml('pi',sub { die "Unknown processing instruction: " . $_[0]; });