summaryrefslogtreecommitdiffstats
path: root/usr.bin/mandoc/man.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.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.c')
-rw-r--r--usr.bin/mandoc/man.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/man.c b/usr.bin/mandoc/man.c
index 8635e7b79e7..eefb4aa02b0 100644
--- a/usr.bin/mandoc/man.c
+++ b/usr.bin/mandoc/man.c
@@ -1,4 +1,4 @@
-/* $Id: man.c,v 1.65 2012/02/26 19:41:27 schwarze Exp $ */
+/* $Id: man.c,v 1.66 2012/06/02 20:07:09 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -36,7 +36,7 @@ const char *const __man_macronames[MAN_MAX] = {
"RI", "na", "sp", "nf",
"fi", "RE", "RS", "DT",
"UC", "PD", "AT", "in",
- "ft", "OP"
+ "ft", "OP", "EX", "EE"
};
const char * const *man_macronames = __man_macronames;