diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-08-19 09:14:50 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-08-19 09:14:50 +0000 |
commit | aade897081e194716754b33820106010e2b0ad04 (patch) | |
tree | 685ac08b6c3f40f0ad7b84d21f7c697a86909444 /man_action.c | |
parent | da55485ae1f9a11536b11b9af51a3964d20caa7b (diff) | |
download | mandoc-aade897081e194716754b33820106010e2b0ad04.tar.gz |
Added RS/RE macro pair (had to adjust closing rules, sec/ssec/rs/par).
Diffstat (limited to 'man_action.c')
-rw-r--r-- | man_action.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/man_action.c b/man_action.c index 671246ab..bd700079 100644 --- a/man_action.c +++ b/man_action.c @@ -62,7 +62,9 @@ const struct actions man_actions[MAN_MAX] = { { NULL }, /* sp */ { NULL }, /* nf */ { NULL }, /* fi */ - { NULL }, /* r*/ + { NULL }, /* r */ + { NULL }, /* RE */ + { NULL }, /* RS */ }; |