From b1e9670a1c5ab8c24995c3ac0de4d25742179db2 Mon Sep 17 00:00:00 2001 From: schwarze Date: Mon, 29 Nov 2010 00:12:02 +0000 Subject: 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. --- usr.bin/mandoc/man.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin/mandoc/man.c') 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 * @@ -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; -- cgit v1.2.3-59-g8ed1b