X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=utils%2Fdocbook2man%2Fdocbook2man-spec.pl;h=584a2d795be206cf449b2c3d722dd455b1d8ffd3;hb=960ae61d1bce3289d3a79290a3d0c583620c2414;hp=4f3b81d94ca7178a26c7d357abd225aff72a201c;hpb=3d4339c137ce24844607cb0e9972d2c6c5ecd9ac;p=privoxy.git diff --git a/utils/docbook2man/docbook2man-spec.pl b/utils/docbook2man/docbook2man-spec.pl index 4f3b81d9..584a2d79 100644 --- a/utils/docbook2man/docbook2man-spec.pl +++ b/utils/docbook2man/docbook2man-spec.pl @@ -52,8 +52,6 @@ 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 $ - use SGMLS; # Use the SGMLS package. use SGMLS::Output; # Use stack-based output. use SGMLS::Refs; @@ -259,11 +257,8 @@ sgml('', 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: -.\\" -.\\" Please send any bug reports, improvements, comments, patches, -.\\" etc. to Steve Cheng . +.\\" 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 +1211,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]; });