artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9630d74
)
Fix an obvious bug found during the /* FALLTHROUGH */ cleanup:
author
schwarze
<schwarze@openbsd.org>
Mon, 12 Oct 2015 00:14:41 +0000
(
00:14
+0000)
committer
schwarze
<schwarze@openbsd.org>
Mon, 12 Oct 2015 00:14:41 +0000
(
00:14
+0000)
ASCII_NBRSP has to be rendered as " ", not "-".
usr.bin/mandoc/html.c
patch
|
blob
|
history
diff --git
a/usr.bin/mandoc/html.c
b/usr.bin/mandoc/html.c
index
c03df78
..
348b43f
100644
(file)
--- a/
usr.bin/mandoc/html.c
+++ b/
usr.bin/mandoc/html.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: html.c,v 1.
59 2015/10/12 00:07:27
schwarze Exp $ */
+/* $OpenBSD: html.c,v 1.
60 2015/10/12 00:14:41
schwarze Exp $ */
/*
* Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2011-2015 Ingo Schwarze <schwarze@openbsd.org>
@@
-316,7
+316,7
@@
print_escape(char c)
printf(""");
break;
case ASCII_NBRSP:
- p
utchar('-'
);
+ p
rintf(" "
);
break;
case ASCII_HYPH:
putchar('-');