diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-12 10:43:22 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-01-12 10:43:22 +0000 |
commit | 2bf82dba54d0ddc4e85c60a1627506ced02908f0 (patch) | |
tree | a82dabc3e5509d2cd4a383b5799e38c3a7615bbd /libman.h | |
parent | d184f91df1cea2fba0dbd3f880de0a6e9f7b84ac (diff) | |
download | mandoc-2bf82dba54d0ddc4e85c60a1627506ced02908f0.tar.gz |
If the first character of free-form text is whitespace, then a newline
shall precede outputted text (surprise!).
Diffstat (limited to 'libman.h')
-rw-r--r-- | libman.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -34,6 +34,7 @@ struct man { #define MAN_ILINE (1 << 3) /* Ignored in next-line scope. */ #define MAN_LITERAL (1 << 4) /* Literal input. */ #define MAN_BPLINE (1 << 5) +#define MAN_NEWLINE (1 << 6) /* first macro/text in a line */ enum man_next next; /* where to put the next node */ struct man_node *last; /* the last parsed node */ struct man_node *first; /* the first parsed node */ |