From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (kristaps@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.3/8.14.3) with ESMTP id p92A2RV4026320 for ; Sun, 2 Oct 2011 06:02:27 -0400 (EDT) Received: (from kristaps@localhost) by krisdoz.my.domain (8.14.3/8.14.3/Submit) id p92A2Qfw000506; Sun, 2 Oct 2011 06:02:26 -0400 (EDT) Date: Sun, 2 Oct 2011 06:02:26 -0400 (EDT) Message-Id: <201110021002.p92A2Qfw000506@krisdoz.my.domain> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: kristaps@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: Make -T[x]html suppress output with \& (and similar zwsp X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- Make -T[x]html suppress output with \& (and similar zwsp points). This fixes lynx's rendering of manuals with the \&, which were rendering as ​ in the text. Reported by Paul de Weerd, thanks! Modified Files: -------------- mdocml: chars.in Revision Data ------------- Index: chars.in =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/chars.in,v retrieving revision 1.41 retrieving revision 1.42 diff -Lchars.in -Lchars.in -u -p -r1.41 -r1.42 --- chars.in +++ chars.in @@ -33,15 +33,15 @@ static const char ascii_nbrsp[2] = { ASC CHAR_TBL_START /* Spacing. */ -CHAR("c", "", 8203) +CHAR("c", "", 0) CHAR("0", " ", 8194) CHAR(" ", ascii_nbrsp, 160) CHAR("~", ascii_nbrsp, 160) -CHAR("%", "", 8203) -CHAR("&", "", 8203) -CHAR("^", "", 8203) -CHAR("|", "", 8203) -CHAR("}", "", 8203) +CHAR("%", "", 0) +CHAR("&", "", 0) +CHAR("^", "", 0) +CHAR("|", "", 0) +CHAR("}", "", 0) /* Accents. */ CHAR("a\"", "\"", 779) -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv