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_action.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_action.c')
-rw-r--r-- | man_action.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/man_action.c b/man_action.c index 80f93df1..b689cd8f 100644 --- a/man_action.c +++ b/man_action.c @@ -68,6 +68,9 @@ const struct actions man_actions[MAN_MAX] = { { NULL }, /* DT */ { NULL }, /* UC */ { NULL }, /* PD */ + { NULL }, /* Sp */ + { post_nf }, /* Vb */ + { post_fi }, /* Ve */ }; |