summaryrefslogtreecommitdiffstatshomepage
path: root/man_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-10-24 05:45:04 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-10-24 05:45:04 +0000
commit42509ec027333e856b04e0acd2f35922c44b31d2 (patch)
tree0ebae3b0ea3fa2dc918281dd2101e5292f41c49a /man_html.c
parentdc5e4040dc955e78ad2879289fb61a2ce36e7b78 (diff)
downloadmandoc-42509ec027333e856b04e0acd2f35922c44b31d2.tar.gz
mandoc-42509ec027333e856b04e0acd2f35922c44b31d2.tar.zst
mandoc-42509ec027333e856b04e0acd2f35922c44b31d2.zip
Added `PD' to -man (doesn't do anything, yet).
Diffstat (limited to 'man_html.c')
-rw-r--r--man_html.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/man_html.c b/man_html.c
index 98d4d723..3ff82ae9 100644
--- a/man_html.c
+++ b/man_html.c
@@ -1,4 +1,4 @@
-/* $Id: man_html.c,v 1.12 2009/10/22 18:55:32 kristaps Exp $ */
+/* $Id: man_html.c,v 1.13 2009/10/24 05:45:04 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -30,6 +30,7 @@
#include "main.h"
/* TODO: preserve ident widths. */
+/* FIXME: have PD set the default vspace width. */
#define INDENT 5
#define HALFINDENT 3
@@ -104,6 +105,7 @@ static const struct htmlman mans[MAN_MAX] = {
{ man_RS_pre, NULL }, /* RS */
{ man_ign_pre, NULL }, /* DT */
{ man_ign_pre, NULL }, /* UC */
+ { man_ign_pre, NULL }, /* PD */
};