aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-04-12 19:19:57 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-04-12 19:19:57 +0000
commit64f804892d86409e054d72a0a2fae9733b46ce16 (patch)
treefdc9f4ad378eaecaa1685480daa123838fff3d15 /mdoc.h
parent60b9600bd2c7ac00417ebb42873ffe00a80a205f (diff)
downloadmandoc-64f804892d86409e054d72a0a2fae9733b46ce16.tar.gz
mandoc-64f804892d86409e054d72a0a2fae9733b46ce16.tar.zst
mandoc-64f804892d86409e054d72a0a2fae9733b46ce16.zip
Manual .Dt fields CAPITALISED.
Indent set to 5 chars (nroff compat). Half-indent set to 3 chars (nroff compat). Default behaviour is loose-y (ignore macro/char/escape). Added -fstrict. Added unknown-character ignoring.
Diffstat (limited to 'mdoc.h')
-rw-r--r--mdoc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/mdoc.h b/mdoc.h
index 3e0c8297..61e8b9c9 100644
--- a/mdoc.h
+++ b/mdoc.h
@@ -1,4 +1,4 @@
-/* $Id: mdoc.h,v 1.54 2009/03/31 13:50:19 kristaps Exp $ */
+/* $Id: mdoc.h,v 1.55 2009/04/12 19:19:57 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>
*
@@ -276,6 +276,7 @@ struct mdoc_node {
#define MDOC_IGN_SCOPE (1 << 0) /* Ignore scope violations. */
#define MDOC_IGN_ESCAPE (1 << 1) /* Ignore bad escape sequences. */
#define MDOC_IGN_MACRO (1 << 2) /* Ignore unknown macros. */
+#define MDOC_IGN_CHARS (1 << 3) /* Ignore disallowed chars. */
/* Call-backs for parse messages. */
struct mdoc_cb {