projects
/
privoxy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
166f659
)
Add support for entity.
author
hal9
<hal9@users.sourceforge.net>
Tue, 13 Aug 2002 03:46:00 +0000
(
03:46
+0000)
committer
hal9
<hal9@users.sourceforge.net>
Tue, 13 Aug 2002 03:46:00 +0000
(
03:46
+0000)
utils/docbook2man/docbook2man-spec.pl
patch
|
blob
|
history
diff --git
a/utils/docbook2man/docbook2man-spec.pl
b/utils/docbook2man/docbook2man-spec.pl
index
a15cf51
..
4c90850
100644
(file)
--- a/
utils/docbook2man/docbook2man-spec.pl
+++ b/
utils/docbook2man/docbook2man-spec.pl
@@
-52,7
+52,7
@@
Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
=cut
-# $Id: docbook2man-spec.pl,v 1.
6 2002/05/16 08:44:23 twaugh
Exp $
+# $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.
@@
-1216,6
+1216,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]; });