aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man_validate.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2012-06-02 20:16:23 +0000
committerIngo Schwarze <schwarze@openbsd.org>2012-06-02 20:16:23 +0000
commit53b5d29222e1768659eb3f30de4c87a1be30c59c (patch)
treea2d4c33aacf0c8bed2ecb1732097091acc5db409 /man_validate.c
parent74995844dac462420bc32ba558372fbb8a2450d6 (diff)
downloadmandoc-53b5d29222e1768659eb3f30de4c87a1be30c59c.tar.gz
mandoc-53b5d29222e1768659eb3f30de4c87a1be30c59c.tar.zst
mandoc-53b5d29222e1768659eb3f30de4c87a1be30c59c.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 'man_validate.c')
-rw-r--r--man_validate.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/man_validate.c b/man_validate.c
index e40b089f..988603bf 100644
--- a/man_validate.c
+++ b/man_validate.c
@@ -1,4 +1,4 @@
-/* $Id: man_validate.c,v 1.80 2012/01/03 15:16:24 kristaps Exp $ */
+/* $Id: man_validate.c,v 1.81 2012/06/02 20:16:23 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
@@ -114,6 +114,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 */
};