diff options
author | 2010-11-29 00:12:02 +0000 | |
---|---|---|
committer | 2010-11-29 00:12:02 +0000 | |
commit | b1e9670a1c5ab8c24995c3ac0de4d25742179db2 (patch) | |
tree | 21da3bab85fa08b2c31af42e10349d3ae12d5c40 /usr.bin/mandoc/man.c | |
parent | double the default message buffer size. again. (diff) | |
download | wireguard-openbsd-b1e9670a1c5ab8c24995c3ac0de4d25742179db2.tar.xz wireguard-openbsd-b1e9670a1c5ab8c24995c3ac0de4d25742179db2.zip |
Implement the roff .ft (change font) request for man(7).
Of course, we don't want to encourage low-level physical markup,
but pod2man(1) writes such requests, so Perl manuals contain them,
and some Xenocara and lots and lots of ports manuals use them as well.
In base and Xenocara, this will reduce mandoc -Tlint ERROR noise;
in ports, it will improve rendering of many manuals.
Diffstat (limited to 'usr.bin/mandoc/man.c')
-rw-r--r-- | usr.bin/mandoc/man.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/man.c b/usr.bin/mandoc/man.c index b032524de7b..20b5bd8266d 100644 --- a/usr.bin/mandoc/man.c +++ b/usr.bin/mandoc/man.c @@ -1,4 +1,4 @@ -/* $Id: man.c,v 1.44 2010/11/28 19:35:33 schwarze Exp $ */ +/* $Id: man.c,v 1.45 2010/11/29 00:12:02 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -40,7 +40,7 @@ const char *const __man_macronames[MAN_MAX] = { "nf", "fi", "r", "RE", "RS", "DT", "UC", "PD", "Sp", "Vb", "Ve", "AT", - "in", "TS", "TE" + "in", "TS", "TE", "ft", }; const char * const *man_macronames = __man_macronames; |