diff options
author | 2012-06-02 20:07:09 +0000 | |
---|---|---|
committer | 2012-06-02 20:07:09 +0000 | |
commit | 8d0fa220a9f3f8678da39a869f6716a46ae538b0 (patch) | |
tree | 595f60b77a7788b4c9bfa2d59f5b510d46a1d063 /usr.bin/mandoc/man_validate.c | |
parent | Add AMT ports to /etc/services so they're entered in net.inet.tcp.baddynamic (diff) | |
download | wireguard-openbsd-8d0fa220a9f3f8678da39a869f6716a46ae538b0.tar.xz wireguard-openbsd-8d0fa220a9f3f8678da39a869f6716a46ae538b0.zip |
Minimal implementation of .EX and .EE for GNU compatibility.
Do not use this, it is not portable and only defined in esr's man-ext.
For example, sox(1) wants these macros.
Diffstat (limited to 'usr.bin/mandoc/man_validate.c')
-rw-r--r-- | usr.bin/mandoc/man_validate.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/mandoc/man_validate.c b/usr.bin/mandoc/man_validate.c index 9f898e9ecf3..674e92ffb72 100644 --- a/usr.bin/mandoc/man_validate.c +++ b/usr.bin/mandoc/man_validate.c @@ -1,4 +1,4 @@ -/* $Id: man_validate.c,v 1.52 2012/02/26 19:41:27 schwarze Exp $ */ +/* $Id: man_validate.c,v 1.53 2012/06/02 20:07:09 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org> @@ -110,6 +110,8 @@ static const struct man_valid man_valids[MAN_MAX] = { { NULL, NULL }, /* in */ { NULL, posts_ft }, /* ft */ { NULL, posts_eq2 }, /* OP */ + { NULL, posts_nf }, /* EX */ + { NULL, posts_fi }, /* EE */ }; |