diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-07-30 21:18:24 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-07-30 21:18:24 +0000 |
commit | b9959419144200aae35b8cb648937b9bd18a5716 (patch) | |
tree | c3f77cc28c6cb4c2534c00ca792e5715937d367a /libman.h | |
parent | bdbc20253f6d0e531a1f1bf519d9d01a5c1059a3 (diff) | |
download | mandoc-b9959419144200aae35b8cb648937b9bd18a5716.tar.gz |
garbage collect three unused global flags; no functional change
Diffstat (limited to 'libman.h')
-rw-r--r-- | libman.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -26,10 +26,8 @@ struct man { struct mparse *parse; /* parse pointer */ int quick; /* abort parse early */ int flags; /* parse flags */ -#define MAN_HALT (1 << 0) /* badness happened: die */ #define MAN_ELINE (1 << 1) /* Next-line element scope. */ #define MAN_BLINE (1 << 2) /* Next-line block scope. */ -#define MAN_ILINE (1 << 3) /* Ignored in next-line scope. */ #define MAN_LITERAL (1 << 4) /* Literal input. */ #define MAN_NEWLINE (1 << 6) /* first macro/text in a line */ enum man_next next; /* where to put the next node */ |