diff options
author | 2018-12-31 11:09:20 +0000 | |
---|---|---|
committer | 2018-12-31 11:09:20 +0000 | |
commit | d1294011571140eb4933d938333d2c5dd4070ad5 (patch) | |
tree | 0630b8fe50f4b2a08e489c331819f32b430651cd /usr.bin/mandoc/html.h | |
parent | Cleanup, minus 25 LOC, no functional change: (diff) | |
download | wireguard-openbsd-d1294011571140eb4933d938333d2c5dd4070ad5.tar.xz wireguard-openbsd-d1294011571140eb4933d938333d2c5dd4070ad5.zip |
drop flag HTML_LITERAL which is no longer used
Diffstat (limited to 'usr.bin/mandoc/html.h')
-rw-r--r-- | usr.bin/mandoc/html.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/mandoc/html.h b/usr.bin/mandoc/html.h index b16f973a918..9ad23c6b886 100644 --- a/usr.bin/mandoc/html.h +++ b/usr.bin/mandoc/html.h @@ -1,4 +1,4 @@ -/* $OpenBSD: html.h,v 1.58 2018/12/15 23:33:20 schwarze Exp $ */ +/* $OpenBSD: html.h,v 1.59 2018/12/31 11:09:20 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2017, 2018 Ingo Schwarze <schwarze@openbsd.org> @@ -88,7 +88,6 @@ struct html { #define HTML_KEEP (1 << 2) #define HTML_PREKEEP (1 << 3) #define HTML_NONOSPACE (1 << 4) /* never add spaces */ -#define HTML_LITERAL (1 << 5) /* literal (e.g., <PRE>) context */ #define HTML_SKIPCHAR (1 << 6) /* skip the next character */ #define HTML_NOSPLIT (1 << 7) /* do not break line before .An */ #define HTML_SPLIT (1 << 8) /* break line before .An */ |