diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-03-23 11:30:48 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-03-23 11:30:48 +0000 |
commit | 664c21875228ae7f241f792abcc521bc64e42067 (patch) | |
tree | 074094c1be5f19d158836e09aeed7fabc1aca3ce /man.c | |
parent | 1850b321257c0b341f90c8d3c259ac54899376e6 (diff) | |
download | mandoc-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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |