From 6f7be166af7f1df1e62dc95617d3e91c3178d435 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sun, 2 Oct 2011 10:02:26 +0000 Subject: 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! --- chars.in | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/chars.in b/chars.in index cc5eccb1..0d6959de 100644 --- a/chars.in +++ b/chars.in @@ -33,15 +33,15 @@ static const char ascii_nbrsp[2] = { ASCII_NBRSP, '\0' }; 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) -- cgit