summaryrefslogtreecommitdiffstats
path: root/man_term.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2017-06-25 11:42:02 +0000
committerIngo Schwarze <schwarze@openbsd.org>2017-06-25 11:42:02 +0000
commitdc6214fb3f60d952ff46ee401174d7d534daf482 (patch)
tree47b5526c4b19564e530c2283b6ff5deb173c3633 /man_term.c
parent223d9e7a98a0a195709f8d69eb038ebc98598fe3 (diff)
downloadmandoc-dc6214fb3f60d952ff46ee401174d7d534daf482.tar.gz
add support for the MT and ME mailto macros, used for example in wg(8);
patch from bentley@
Diffstat (limited to 'man_term.c')
-rw-r--r--man_term.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/man_term.c b/man_term.c
index f317aadf..e0348624 100644
--- a/man_term.c
+++ b/man_term.c
@@ -128,6 +128,8 @@ static const struct termact __termacts[MAN_MAX - MAN_TH] = {
{ pre_literal, NULL, 0 }, /* EE */
{ pre_UR, post_UR, 0 }, /* UR */
{ NULL, NULL, 0 }, /* UE */
+ { pre_UR, post_UR, 0 }, /* MT */
+ { NULL, NULL, 0 }, /* ME */
};
static const struct termact *termacts = __termacts - MAN_TH;