summaryrefslogtreecommitdiffstats
path: root/libman.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-03-27 10:04:56 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-03-27 10:04:56 +0000
commit1a23231b7d2adf726b168ad0121186f58c9afc2c (patch)
tree2cae492c3f4cafc129472596cfbb002cb2aefbaa /libman.h
parent80d2ac69bc131eb6fd2465642f52a9255dabd36a (diff)
downloadmandoc-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.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/libman.h b/libman.h
index 747abfa9..ba410ae8 100644
--- a/libman.h
+++ b/libman.h
@@ -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