diff options
Diffstat (limited to 'private.h')
-rw-r--r-- | private.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -43,10 +43,11 @@ struct mdoc_macro { int (*fp)(struct mdoc *, int, int, int *, char *); int flags; #define MDOC_CALLABLE (1 << 0) -#define MDOC_EXPLICIT (1 << 1) -#define MDOC_QUOTABLE (1 << 2) -#define MDOC_PROLOGUE (1 << 3) -#define MDOC_NESTED (1 << 4) +#define MDOC_PARSED (1 << 1) +#define MDOC_EXPLICIT (1 << 2) +#define MDOC_QUOTABLE (1 << 3) +#define MDOC_PROLOGUE (1 << 4) +#define MDOC_NESTED (1 << 5) }; extern const struct mdoc_macro *const mdoc_macros; |