summaryrefslogtreecommitdiffstats
path: root/libman.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-08-21 13:14:07 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-08-21 13:14:07 +0000
commitcc7b6e7f2654427ef03598fdd28143e66c09e279 (patch)
tree7228078471175a54ce348952360ad8ecef0e4035 /libman.h
parent270a33558b8c086b899f49f34e1d47da4792b7b8 (diff)
downloadmandoc-cc7b6e7f2654427ef03598fdd28143e66c09e279.tar.gz
Fixed next-line scoping of `.HP nnn' (has both next-line and on-line in head).
Diffstat (limited to 'libman.h')
-rw-r--r--libman.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libman.h b/libman.h
index 2b954dab..d8b305a4 100644
--- a/libman.h
+++ b/libman.h
@@ -71,7 +71,8 @@ struct man_macro {
int (*fp)(MACRO_PROT_ARGS);
int flags;
#define MAN_SCOPED (1 << 0)
-#define MAN_EXPLICIT (1 << 1)
+#define MAN_EXPLICIT (1 << 1) /* See blk_imp(). */
+#define MAN_FSCOPED (1 << 2) /* See blk_imp(). */
};
extern const struct man_macro *const man_macros;