summaryrefslogtreecommitdiffstats
path: root/man_term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-12-05 16:14:16 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-12-05 16:14:16 +0000
commit6fd4c9d365c408c83f9382855b2310891154a1f7 (patch)
tree15a259292abce1f6d9a0d32a644cd43e11a241cd /man_term.c
parentdb89a3957c75469c4a73ca032acb325db8294f7a (diff)
downloadmandoc-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_term.c')
-rw-r--r--man_term.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/man_term.c b/man_term.c
index 282d6842..3847b2f9 100644
--- a/man_term.c
+++ b/man_term.c
@@ -137,9 +137,6 @@ static const struct termact termacts[MAN_MAX] = {
{ pre_ign, NULL, 0 }, /* DT */
{ pre_ign, NULL, 0 }, /* UC */
{ pre_ign, NULL, 0 }, /* PD */
- { pre_sp, NULL, MAN_NOTEXT }, /* Sp */
- { pre_literal, NULL, 0 }, /* Vb */
- { pre_literal, NULL, 0 }, /* Ve */
{ pre_ign, NULL, 0 }, /* AT */
{ pre_in, NULL, MAN_NOTEXT }, /* in */
};
@@ -254,11 +251,9 @@ pre_literal(DECL_ARGS)
term_newln(p);
switch (n->tok) {
- case (MAN_Vb):
- /* FALLTHROUGH */
case (MAN_nf):
mt->fl |= MANT_LITERAL;
- return(MAN_Vb != n->tok);
+ break;
default:
mt->fl &= ~MANT_LITERAL;
break;