summaryrefslogtreecommitdiffstatshomepage
path: root/man_macro.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_macro.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_macro.c')
-rw-r--r--man_macro.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/man_macro.c b/man_macro.c
index 865427d7..df649b99 100644
--- a/man_macro.c
+++ b/man_macro.c
@@ -1,4 +1,4 @@
-/* $Id: man_macro.c,v 1.28 2009/08/22 09:10:38 kristaps Exp $ */
+/* $Id: man_macro.c,v 1.29 2009/10/24 05:45:05 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -67,6 +67,7 @@ const struct man_macro __man_macros[MAN_MAX] = {
{ blk_imp, MAN_EXPLICIT }, /* RS */
{ in_line_eoln, 0 }, /* DT */
{ in_line_eoln, 0 }, /* UC */
+ { in_line_eoln, 0 }, /* PD */
};
const struct man_macro * const man_macros = __man_macros;