diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-03-27 10:04:56 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-03-27 10:04:56 +0000 |
commit | 1a23231b7d2adf726b168ad0121186f58c9afc2c (patch) | |
tree | 2cae492c3f4cafc129472596cfbb002cb2aefbaa /libman.h | |
parent | 80d2ac69bc131eb6fd2465642f52a9255dabd36a (diff) | |
download | mandoc-1a23231b7d2adf726b168ad0121186f58c9afc2c.tar.gz |
Fixed re-adjustment of scope in exiting roff instructions (libman).
Added title-case check for (libman).
Fixed premature closure of roff instruction scope (libman).
Added documentation of ignored roff macros to man(3).
Diffstat (limited to 'libman.h')
-rw-r--r-- | libman.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -61,6 +61,8 @@ enum merr { WOLITERAL, WNLITERAL, WROFFNEST, + WROFFSCOPE, + WTITLECASE, WERRMAX }; @@ -111,7 +113,8 @@ int man_valid_post(struct man *); int man_valid_pre(struct man *, const struct man_node *); int man_action_post(struct man *); int man_action_pre(struct man *, struct man_node *); -int man_unscope(struct man *, const struct man_node *); +int man_unscope(struct man *, + const struct man_node *, enum merr); __END_DECLS |