aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit9d2ef545376117ce8b24ed652f358c029d7b8f4c (patch)
tree04be238fca39283691f2e1323ce5fb566a51c833 /man_term.c
parent81b56cdb2563a0ccc155f42f0c79a82f9ccbb22a (diff)
downloadmandoc-9d2ef545376117ce8b24ed652f358c029d7b8f4c.tar.gz
mandoc-9d2ef545376117ce8b24ed652f358c029d7b8f4c.tar.zst
mandoc-9d2ef545376117ce8b24ed652f358c029d7b8f4c.zip
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.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/man_term.c b/man_term.c
index 44b25d34..fcdb45df 100644
--- a/man_term.c
+++ b/man_term.c
@@ -1,4 +1,4 @@
-/* $Id: man_term.c,v 1.207 2017/06/17 13:06:16 schwarze Exp $ */
+/* $Id: man_term.c,v 1.208 2017/06/25 11:42:02 schwarze Exp $ */
/*
* Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010-2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -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;