Undo rev 1.18 which broke the sort order in master-index

Replace `--' with `-=' inside comments as a workaround so
the SGML compiler will not die.
This commit is contained in:
Wolfram Schneider 1998-09-30 16:35:17 +00:00
parent 2ac691bf97
commit 0e1cfa2384
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=3551

View file

@ -4,7 +4,7 @@
#
# by John Fieber <jfieber@freebsd.org>
# Mon May 13 10:31:58 EST 1996
# $Id: portindex,v 1.10 1998-09-21 15:40:08 motoyuki Exp $
# $Id: portindex,v 1.11 1998-09-30 16:35:17 wosch Exp $
# The FreeBSD Japanese Documentation Project
# Original revision: 1.18
@ -192,8 +192,12 @@ sub main {
}
# Add an entry to the master index
# workaround for SGML bug, `--' is not allowed in comments
local($sname) = $name;
$sname =~ s/--/-=/g;
$master[$portnumber] =
"<STRONG><A HREF=\"$cat[0].html#$name\">$name</A></STRONG> " .
"<!-- $sname --><STRONG><A HREF=\"$cat[0].html#$name\">$name</A></STRONG> " .
" -- <EM>$desc</EM><BR>\n";
$portnumber++;
}