aboutsummaryrefslogtreecommitdiffstatshomepage
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
commitb412c758384470311f4f70c568373fccd2828721 (patch)
treea95f663183188d3c0ec2a54e5b5d529607062909
parentd7d6d042d5f9ebfa10234d250c70da42d548d314 (diff)
downloadmandoc-b412c758384470311f4f70c568373fccd2828721.tar.gz
mandoc-b412c758384470311f4f70c568373fccd2828721.tar.zst
mandoc-b412c758384470311f4f70c568373fccd2828721.zip
Whack MDOC_ACTED and MAN_ACTED (these no longer exist).
-rw-r--r--man.h3
-rw-r--r--mdoc.h3
2 files changed, 2 insertions, 4 deletions
diff --git a/man.h b/man.h
index 1bd7c672..a45eac2b 100644
--- a/man.h
+++ b/man.h
@@ -1,4 +1,4 @@
-/* $Id: man.h,v 1.48 2010/12/08 10:58:22 kristaps Exp $ */
+/* $Id: man.h,v 1.49 2010/12/26 14:44:13 kristaps Exp $ */
/*
* Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -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 63dd9ac5..17f0cfab 100644
--- a/mdoc.h
+++ b/mdoc.h
@@ -1,4 +1,4 @@
-/* $Id: mdoc.h,v 1.112 2010/12/25 23:25:53 kristaps Exp $ */
+/* $Id: mdoc.h,v 1.113 2010/12/26 14:44:13 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -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 */