diff options
author | 2017-07-05 15:03:20 +0000 | |
---|---|---|
committer | 2017-07-05 15:03:20 +0000 | |
commit | 32e499962565cb3b812aaeba8c8db9821677da8f (patch) | |
tree | 912edb163786ec0a0772316a54de9f53a6c4cda0 /usr.bin/mandoc/mandoc.h | |
parent | Enable NFSCLIENT to let installation over NFS work. (diff) | |
download | wireguard-openbsd-32e499962565cb3b812aaeba8c8db9821677da8f.tar.xz wireguard-openbsd-32e499962565cb3b812aaeba8c8db9821677da8f.zip |
The EQN_LISTONE box type is pointless.
Simplify by just using EQN_LIST with expectargs = 1.
Noticed while investigating a bug report from bentley@.
No functional change.
Diffstat (limited to 'usr.bin/mandoc/mandoc.h')
-rw-r--r-- | usr.bin/mandoc/mandoc.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/mandoc/mandoc.h b/usr.bin/mandoc/mandoc.h index 4226e9fb61d..c380b99bfd1 100644 --- a/usr.bin/mandoc/mandoc.h +++ b/usr.bin/mandoc/mandoc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mandoc.h,v 1.183 2017/07/03 17:33:01 schwarze Exp $ */ +/* $OpenBSD: mandoc.h,v 1.184 2017/07/05 15:03:20 schwarze Exp $ */ /* * Copyright (c) 2010, 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2010-2017 Ingo Schwarze <schwarze@openbsd.org> @@ -338,7 +338,6 @@ enum eqn_boxt { EQN_TEXT, /* text (number, variable, whatever) */ EQN_SUBEXPR, /* nested `eqn' subexpression */ EQN_LIST, /* list (braces, etc.) */ - EQN_LISTONE, /* singleton list */ EQN_PILE, /* vertical pile */ EQN_MATRIX /* pile of piles */ }; |