source@mandoc.bsd.lv
 help / color / mirror / Atom feed
* mdocml: Fix an obvious bug found during the /* FALLTHROUGH */ cleanup:
@ 2015-10-12  0:16 schwarze
  0 siblings, 0 replies; only message in thread
From: schwarze @ 2015-10-12  0:16 UTC (permalink / raw)
  To: source

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

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-10-12  0:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-12  0:16 mdocml: Fix an obvious bug found during the /* FALLTHROUGH */ cleanup: schwarze

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).