From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (fantadrom.bsd.lv [local]); by fantadrom.bsd.lv (OpenSMTPD) with ESMTPA id 84e4c1fc; for ; Sun, 11 Oct 2015 19:16:01 -0500 (EST) Date: Sun, 11 Oct 2015 19:16:01 -0500 (EST) Message-Id: <2576375381880103194.enqueue@fantadrom.bsd.lv> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: schwarze@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: Fix an obvious bug found during the /* FALLTHROUGH */ cleanup: X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- Fix an obvious bug found during the /* FALLTHROUGH */ cleanup: ASCII_NBRSP has to be rendered as " ", not "-". Modified Files: -------------- mdocml: html.c Revision Data ------------- Index: html.c =================================================================== RCS file: /home/cvs/mdocml/mdocml/html.c,v retrieving revision 1.189 retrieving revision 1.190 diff -Lhtml.c -Lhtml.c -u -p -r1.189 -r1.190 --- html.c +++ html.c @@ -318,7 +318,7 @@ print_escape(char c) printf("""); break; case ASCII_NBRSP: - putchar('-'); + printf(" "); break; case ASCII_HYPH: putchar('-'); -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv