diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2012-06-02 20:16:23 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2012-06-02 20:16:23 +0000 |
commit | 16e0f8afee6d795cdd67eda6de360fc6ae273e59 (patch) | |
tree | befec749f81f3c167017aa93477adf2180c1b8bf /man_validate.c | |
parent | fcb1831f437dffe12c02a91668195e01a11fdc86 (diff) | |
download | mandoc-16e0f8afee6d795cdd67eda6de360fc6ae273e59.tar.gz |
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.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/man_validate.c b/man_validate.c index 822c64d2..914f63ee 100644 --- a/man_validate.c +++ b/man_validate.c @@ -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 */ }; |