diff options
author | 2014-08-08 15:32:17 +0000 | |
---|---|---|
committer | 2014-08-08 15:32:17 +0000 | |
commit | bd39224a2803e9f26c41fd655bfcf69cbd581003 (patch) | |
tree | 850ef1288b7d5fd0c8c2c6b477265562a74fb298 /usr.bin/mandoc/libmdoc.h | |
parent | Get rid of the useless FATAL error "child violates parent syntax". (diff) | |
download | wireguard-openbsd-bd39224a2803e9f26c41fd655bfcf69cbd581003.tar.xz wireguard-openbsd-bd39224a2803e9f26c41fd655bfcf69cbd581003.zip |
Simplify: replace one global flag by one local variable
and remove three unused global flags. No functional change.
Diffstat (limited to 'usr.bin/mandoc/libmdoc.h')
-rw-r--r-- | usr.bin/mandoc/libmdoc.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/mandoc/libmdoc.h b/usr.bin/mandoc/libmdoc.h index 224743682fa..545b96e3ad0 100644 --- a/usr.bin/mandoc/libmdoc.h +++ b/usr.bin/mandoc/libmdoc.h @@ -1,4 +1,4 @@ -/* $Id: libmdoc.h,v 1.56 2014/07/09 11:30:07 schwarze Exp $ */ +/* $Id: libmdoc.h,v 1.57 2014/08/08 15:32:17 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2013 Ingo Schwarze <schwarze@openbsd.org> @@ -28,7 +28,6 @@ struct mdoc { const char *defos; /* default argument for .Os */ int quick; /* abort parse early */ int flags; /* parse flags */ -#define MDOC_HALT (1 << 0) /* error in parse: halt */ #define MDOC_LITERAL (1 << 1) /* in a literal scope */ #define MDOC_PBODY (1 << 2) /* in the document body */ #define MDOC_NEWLINE (1 << 3) /* first macro/text in a line */ |