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_validate.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_validate.c')
-rw-r--r-- | usr.bin/mandoc/man_validate.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/mandoc/man_validate.c b/usr.bin/mandoc/man_validate.c index f3967085186..e44d420749a 100644 --- a/usr.bin/mandoc/man_validate.c +++ b/usr.bin/mandoc/man_validate.c @@ -1,4 +1,4 @@ -/* $Id: man_validate.c,v 1.32 2010/11/29 00:12:02 schwarze Exp $ */ +/* $Id: man_validate.c,v 1.33 2010/11/29 02:26:45 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org> @@ -93,9 +93,6 @@ static const struct man_valid man_valids[MAN_MAX] = { { NULL, NULL }, /* DT */ { NULL, NULL }, /* UC */ { NULL, NULL }, /* PD */ - { NULL, posts_le1 }, /* Sp */ /* FIXME: should warn only. */ - { pres_bline, posts_le1 }, /* Vb */ /* FIXME: should warn only. */ - { pres_bline, posts_eq0 }, /* Ve */ { NULL, NULL }, /* AT */ { NULL, NULL }, /* in */ { NULL, NULL }, /* TS */ |