summaryrefslogtreecommitdiffstats
path: root/html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-01-30 08:42:20 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-01-30 08:42:20 +0000
commit544544185bcee3b5efb8ee4ccd6c444ea8fef690 (patch)
tree08cf8012b075ef18f97cccc9904280cf451a2b9f /html.c
parent69596003d5d304964e0f7f88ac7d957b18ecf9ca (diff)
downloadmandoc-544544185bcee3b5efb8ee4ccd6c444ea8fef690.tar.gz
Fix in handling Vt in SYNOPSIS with trailing punctuation. Spotted by Joerg Sonnenberger.
Diffstat (limited to 'html.c')
-rw-r--r--html.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/html.c b/html.c
index a9190e8f..694b48dd 100644
--- a/html.c
+++ b/html.c
@@ -312,7 +312,6 @@ print_encode(struct html *h, const char *p, int norecurse)
} else if ('>' == *p) {
printf("&gt;");
continue;
- /* FIXME: already escaped? */
} else if ('&' == *p) {
printf("&amp;");
continue;