summaryrefslogtreecommitdiffstatshomepage
path: root/mdoc.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-03-09 13:04:01 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-03-09 13:04:01 +0000
commit24f072b20b99820b86ab0e941c49026a51c11d1d (patch)
tree2bb41369073fdbfbed003d22788600baba04096a /mdoc.h
parent5332b9910e8f7d80dfce64caac812e91b843bdd9 (diff)
downloadmandoc-VERSION_1_4_4.tar.gz
mandoc-VERSION_1_4_4.tar.zst
mandoc-VERSION_1_4_4.zip
Added "Input Encoding" section to mdoc*.1.VERSION_1_4_4
Newline-escaped lines are concatenated. Added -fign-macro option.
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 fd946d6e..9144150e 100644
--- a/mdoc.h
+++ b/mdoc.h
@@ -1,4 +1,4 @@
-/* $Id: mdoc.h,v 1.42 2009/03/08 20:57:35 kristaps Exp $ */
+/* $Id: mdoc.h,v 1.43 2009/03/09 13:04:01 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -264,6 +264,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. */
/* Call-backs for parse messages. */
struct mdoc_cb {