summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-12-26 14:44:13 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-12-26 14:44:13 +0000
commit3274ef6b40aa6bc76ebe034586d027cc93f417c1 (patch)
treeccce6aefa1191373ecdec3cee45faddea4c36cdd
parent67b031ebcd131958f58662f4380593d1e52ebc32 (diff)
downloadmandoc-3274ef6b40aa6bc76ebe034586d027cc93f417c1.tar.gz
Whack MDOC_ACTED and MAN_ACTED (these no longer exist).
-rw-r--r--man.h1
-rw-r--r--mdoc.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/man.h b/man.h
index 81b2792e..042163fa 100644
--- a/man.h
+++ b/man.h
@@ -95,7 +95,6 @@ struct man_node {
enum mant tok; /* tok or MAN__MAX if none */
int flags;
#define MAN_VALID (1 << 0) /* has been validated */
-#define MAN_ACTED (1 << 1) /* has been acted upon */
#define MAN_EOS (1 << 2) /* at sentence boundary */
enum man_type type; /* AST node type */
char *string; /* TEXT node argument */
diff --git a/mdoc.h b/mdoc.h
index 155410fb..07927dd5 100644
--- a/mdoc.h
+++ b/mdoc.h
@@ -385,7 +385,6 @@ struct mdoc_node {
enum mdoct tok; /* tok or MDOC__MAX if none */
int flags;
#define MDOC_VALID (1 << 0) /* has been validated */
-#define MDOC_ACTED (1 << 1) /* has been acted upon */
#define MDOC_EOS (1 << 2) /* at sentence boundary */
#define MDOC_LINE (1 << 3) /* first macro/text on line */
#define MDOC_SYNPRETTY (1 << 4) /* SYNOPSIS-style formatting */