diff options
author | 2010-12-27 23:57:13 +0000 | |
---|---|---|
committer | 2010-12-27 23:57:13 +0000 | |
commit | 1f8782b00faa1566838a43cb4da88d2e3c49da43 (patch) | |
tree | fb7fd35415bd4dc4703009e67df7728d8aae3e3c | |
parent | 1) Fix the pseudo-code explaining cross-filesystem moves. (diff) | |
download | wireguard-openbsd-1f8782b00faa1566838a43cb4da88d2e3c49da43.tar.xz wireguard-openbsd-1f8782b00faa1566838a43cb4da88d2e3c49da43.zip |
Remove two #defines that are unused since the *_action.c removal;
from kristaps@.
-rw-r--r-- | usr.bin/mandoc/man.h | 3 | ||||
-rw-r--r-- | usr.bin/mandoc/mdoc.h | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/mandoc/man.h b/usr.bin/mandoc/man.h index e19c41977ee..7daa88a4153 100644 --- a/usr.bin/mandoc/man.h +++ b/usr.bin/mandoc/man.h @@ -1,4 +1,4 @@ -/* $Id: man.h,v 1.31 2010/12/19 07:53:12 schwarze Exp $ */ +/* $Id: man.h,v 1.32 2010/12/27 23:57:13 schwarze Exp $ */ /* * Copyright (c) 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -101,7 +101,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/usr.bin/mandoc/mdoc.h b/usr.bin/mandoc/mdoc.h index 39a9275f274..02413f593b3 100644 --- a/usr.bin/mandoc/mdoc.h +++ b/usr.bin/mandoc/mdoc.h @@ -1,4 +1,4 @@ -/* $Id: mdoc.h,v 1.39 2010/12/26 21:04:19 schwarze Exp $ */ +/* $Id: mdoc.h,v 1.40 2010/12/27 23:57:13 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -388,7 +388,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 */ |