summaryrefslogtreecommitdiffstats
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
commit664c21875228ae7f241f792abcc521bc64e42067 (patch)
tree074094c1be5f19d158836e09aeed7fabc1aca3ce /man.c
parent1850b321257c0b341f90c8d3c259ac54899376e6 (diff)
downloadmandoc-664c21875228ae7f241f792abcc521bc64e42067.tar.gz
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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/man.c b/man.c
index c3863b95..88035875 100644
--- a/man.c
+++ b/man.c
@@ -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;