summaryrefslogtreecommitdiffstats
path: root/usr.bin/mandoc/man_validate.c
diff options
context:
space:
mode:
authorschwarze <schwarze@openbsd.org>2012-06-02 20:07:09 +0000
committerschwarze <schwarze@openbsd.org>2012-06-02 20:07:09 +0000
commit8d0fa220a9f3f8678da39a869f6716a46ae538b0 (patch)
tree595f60b77a7788b4c9bfa2d59f5b510d46a1d063 /usr.bin/mandoc/man_validate.c
parentAdd AMT ports to /etc/services so they're entered in net.inet.tcp.baddynamic (diff)
downloadwireguard-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.c4
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 */
};