summaryrefslogtreecommitdiffstatshomepage
path: root/man_action.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_action.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_action.c')
-rw-r--r--man_action.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/man_action.c b/man_action.c
index d481f103..7e3cde24 100644
--- a/man_action.c
+++ b/man_action.c
@@ -1,4 +1,4 @@
-/* $Id: man_action.c,v 1.26 2010/03/22 14:03:03 kristaps Exp $ */
+/* $Id: man_action.c,v 1.27 2010/03/23 11:30:48 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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 */
};