aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit715d886dfd72c29355a83d45229fd6e48f85e318 (patch)
tree255bad5824da6fe7ea3f76ad7117643dcdbf17c3 /libman.h
parente8a6c4afb666843c362147ce8863e75d71782247 (diff)
downloadmandoc-715d886dfd72c29355a83d45229fd6e48f85e318.tar.gz
mandoc-715d886dfd72c29355a83d45229fd6e48f85e318.tar.zst
mandoc-715d886dfd72c29355a83d45229fd6e48f85e318.zip
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.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/libman.h b/libman.h
index bee1b549..06769354 100644
--- a/libman.h
+++ b/libman.h
@@ -1,4 +1,4 @@
-/* $Id: libman.h,v 1.27 2010/03/24 20:10:53 kristaps Exp $ */
+/* $Id: libman.h,v 1.28 2010/03/27 10:04:56 kristaps Exp $ */
/*
* Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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