diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2015-10-12 00:15:31 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2015-10-12 00:15:31 +0000 |
commit | 0b97acf582785aee494caae1512ef2416f00f404 (patch) | |
tree | 9b012220db4a2ad3500469c1c28e84109ee08dbe /html.c | |
parent | 66cfe68f0233b3c301173c3bec7198336d19b416 (diff) | |
download | mandoc-0b97acf582785aee494caae1512ef2416f00f404.tar.gz |
Fix an obvious bug found during the /* FALLTHROUGH */ cleanup:
ASCII_NBRSP has to be rendered as " ", not "-".
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -318,7 +318,7 @@ print_escape(char c) printf("""); break; case ASCII_NBRSP: - putchar('-'); + printf(" "); break; case ASCII_HYPH: putchar('-'); |