aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-03-23 11:30:48 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-03-23 11:30:48 +0000
commit27be359286baae838840a62e6c36dac6b91cd810 (patch)
tree87f12f3a4bef976671287f4d690faf2aabd0c0eb /man.c
parent32e373c8b9f15d8b28208b27247d3fd12f7235de (diff)
downloadmandoc-27be359286baae838840a62e6c36dac6b91cd810.tar.gz
mandoc-27be359286baae838840a62e6c36dac6b91cd810.tar.zst
mandoc-27be359286baae838840a62e6c36dac6b91cd810.zip
Support for pod2man standard header macros (Vb, Ve, Sp). Based largely on a set of patches by Ingo Schwarze.
Diffstat (limited to 'man.c')
-rw-r--r--man.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/man.c b/man.c
index 2aee2cb5..00d42577 100644
--- a/man.c
+++ b/man.c
@@ -1,4 +1,4 @@
-/* $Id: man.c,v 1.51 2010/03/22 14:03:03 kristaps Exp $ */
+/* $Id: man.c,v 1.52 2010/03/23 11:30:48 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -60,7 +60,8 @@ const char *const __man_macronames[MAN_MAX] = {
"R", "B", "I", "IR",
"RI", "na", "i", "sp",
"nf", "fi", "r", "RE",
- "RS", "DT", "UC", "PD"
+ "RS", "DT", "UC", "PD",
+ "Sp", "Vb", "Ve",
};
const char * const *man_macronames = __man_macronames;