diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-05 16:14:16 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-05 16:14:16 +0000 |
commit | 6fd4c9d365c408c83f9382855b2310891154a1f7 (patch) | |
tree | 15a259292abce1f6d9a0d32a644cd43e11a241cd /man_validate.c | |
parent | db89a3957c75469c4a73ca032acb325db8294f7a (diff) | |
download | mandoc-6fd4c9d365c408c83f9382855b2310891154a1f7.tar.gz |
Remove `Sp', `Vb', and `Ve' (as per schwarze@'s changes in OpenBSD),
which are now accomodated for the new libroff modifications.
Diffstat (limited to 'man_validate.c')
-rw-r--r-- | man_validate.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/man_validate.c b/man_validate.c index 4a551db4..a3a8669a 100644 --- a/man_validate.c +++ b/man_validate.c @@ -70,7 +70,6 @@ static v_check posts_part[] = { check_part, NULL }; static v_check posts_sec[] = { check_sec, NULL }; static v_check posts_th[] = { check_ge2, check_le5, check_title, post_TH, NULL }; static v_check posts_uc[] = { post_UC, NULL }; -static v_check posts_vb[] = { check_le1, post_nf, NULL }; static v_check pres_bline[] = { check_bline, NULL }; @@ -107,9 +106,6 @@ static const struct man_valid man_valids[MAN_MAX] = { { NULL, NULL }, /* DT */ { NULL, posts_uc }, /* UC */ { NULL, NULL }, /* PD */ - { NULL, posts_le1 }, /* Sp */ /* FIXME: should warn only. */ - { pres_bline, posts_vb }, /* Vb */ /* FIXME: should warn only. */ - { pres_bline, posts_fi }, /* Ve */ { NULL, posts_at }, /* AT */ { NULL, NULL }, /* in */ }; |