summaryrefslogtreecommitdiffstatshomepage
path: root/man_term.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_term.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_term.c')
-rw-r--r--man_term.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/man_term.c b/man_term.c
index c338033c..e9f4264d 100644
--- a/man_term.c
+++ b/man_term.c
@@ -1,4 +1,4 @@
-/* $Id: man_term.c,v 1.43 2009/10/22 18:55:32 kristaps Exp $ */
+/* $Id: man_term.c,v 1.44 2009/10/24 05:45:05 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -32,6 +32,8 @@
#define INDENT 7
#define HALFINDENT 3
+/* FIXME: have PD set the default vspace width. */
+
struct mtermp {
int fl;
#define MANT_LITERAL (1 << 0)
@@ -141,6 +143,7 @@ static const struct termact termacts[MAN_MAX] = {
{ pre_RS, post_RS }, /* RS */
{ pre_ign, NULL }, /* DT */
{ pre_ign, NULL }, /* UC */
+ { pre_ign, NULL }, /* PD */
};