diff options
author | 2010-11-29 02:26:45 +0000 | |
---|---|---|
committer | 2010-11-29 02:26:45 +0000 | |
commit | 67a859d656ca5c1c8f2f3c8fa392a33d9c008a86 (patch) | |
tree | 14880bf9307ac8a51d080add3fd42c3471434db9 /usr.bin/mandoc/man.c | |
parent | Downgrade the easier of the two cases of MANDOCERR_SYNTLINESCOPE (diff) | |
download | wireguard-openbsd-67a859d656ca5c1c8f2f3c8fa392a33d9c008a86.tar.xz wireguard-openbsd-67a859d656ca5c1c8f2f3c8fa392a33d9c008a86.zip |
Now that we have proper .de support in the roff(7) library,
it is time to remove the .Sp, .Vb, and .Ve kludge
that was added to the man(7) library to build Perl 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 7702d3adbae..421ed139c15 100644 --- a/usr.bin/mandoc/man.c +++ b/usr.bin/mandoc/man.c @@ -1,4 +1,4 @@ -/* $Id: man.c,v 1.46 2010/11/29 01:44:41 schwarze Exp $ */ +/* $Id: man.c,v 1.47 2010/11/29 02:26:45 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -39,7 +39,7 @@ const char *const __man_macronames[MAN_MAX] = { "RI", "na", "i", "sp", "nf", "fi", "r", "RE", "RS", "DT", "UC", "PD", - "Sp", "Vb", "Ve", "AT", + "AT", "in", "TS", "TE", "ft", }; |