diff options
author | 2017-06-25 07:23:53 +0000 | |
---|---|---|
committer | 2017-06-25 07:23:53 +0000 | |
commit | df9a9479ddee899e1995f8eba1983628deecbec6 (patch) | |
tree | b8e6e4ef139aeae307e2542996421eae48da1dfc /usr.bin/mandoc/roff.c | |
parent | ldd is more strict wrt semicolons, they can only appear after an (diff) | |
download | wireguard-openbsd-df9a9479ddee899e1995f8eba1983628deecbec6.tar.xz wireguard-openbsd-df9a9479ddee899e1995f8eba1983628deecbec6.zip |
Add support for the MT and ME mailto macros, used for example in wg(8).
feedback and ok schwarze@
Diffstat (limited to 'usr.bin/mandoc/roff.c')
-rw-r--r-- | usr.bin/mandoc/roff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/roff.c b/usr.bin/mandoc/roff.c index 414c43aedd4..1311d4897bf 100644 --- a/usr.bin/mandoc/roff.c +++ b/usr.bin/mandoc/roff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: roff.c,v 1.188 2017/06/24 14:38:28 schwarze Exp $ */ +/* $OpenBSD: roff.c,v 1.189 2017/06/25 07:23:53 bentley Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2010-2015, 2017 Ingo Schwarze <schwarze@openbsd.org> @@ -328,7 +328,7 @@ const char *__roff_name[MAN_MAX + 1] = { "RE", "RS", "DT", "UC", "PD", "AT", "in", "OP", "EX", "EE", "UR", - "UE", NULL + "UE", "MT", "ME", NULL }; const char *const *roff_name = __roff_name; |