summaryrefslogtreecommitdiffstats
path: root/man_macro.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
commit16e0f8afee6d795cdd67eda6de360fc6ae273e59 (patch)
treebefec749f81f3c167017aa93477adf2180c1b8bf /man_macro.c
parentfcb1831f437dffe12c02a91668195e01a11fdc86 (diff)
downloadmandoc-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_macro.c')
-rw-r--r--man_macro.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/man_macro.c b/man_macro.c
index bc56ae4c..15df0ace 100644
--- a/man_macro.c
+++ b/man_macro.c
@@ -85,6 +85,8 @@ const struct man_macro __man_macros[MAN_MAX] = {
{ in_line_eoln, 0 }, /* in */
{ in_line_eoln, 0 }, /* ft */
{ in_line_eoln, 0 }, /* OP */
+ { in_line_eoln, MAN_BSCOPE }, /* EX */
+ { in_line_eoln, MAN_BSCOPE }, /* EE */
};
const struct man_macro * const man_macros = __man_macros;