diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-16 19:55:28 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-16 19:55:28 +0000 |
commit | 9926ea89c1f7a785e750b0118b7b4ed73b4fd2d0 (patch) | |
tree | dbad9a35492afb007b8ff5e3ad1416ed1e8ed989 /man_action.c | |
parent | a2605b913e645cce238389093dfa9d10cbcf7236 (diff) | |
download | mandoc-9926ea89c1f7a785e750b0118b7b4ed73b4fd2d0.tar.gz |
Removed MAN___: moved MAN_br to its index (comments not passed into parser).
Fix: hashtable not fully formed after removal of MDOC___.
Diffstat (limited to 'man_action.c')
-rw-r--r-- | man_action.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/man_action.c b/man_action.c index 17e060bd..3d8d784a 100644 --- a/man_action.c +++ b/man_action.c @@ -36,7 +36,7 @@ static int post_TH(struct man *); static time_t man_atotime(const char *); const struct actions man_actions[MAN_MAX] = { - { NULL }, /* __ */ + { NULL }, /* br */ { post_TH }, /* TH */ { NULL }, /* SH */ { NULL }, /* SS */ @@ -57,7 +57,6 @@ const struct actions man_actions[MAN_MAX] = { { NULL }, /* I */ { NULL }, /* IR */ { NULL }, /* RI */ - { NULL }, /* br */ { NULL }, /* na */ { NULL }, /* i */ }; |