aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man_term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-05-10 08:05:17 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-05-10 08:05:17 +0000
commitc368f1d502310930cf0f80dd42e696657e42e636 (patch)
tree6058eb1e2750dbb927f744cbc490f61ec3b7a113 /man_term.c
parent0ef1c8050efed1d207538f2a822b1d623cfae0c2 (diff)
downloadmandoc-c368f1d502310930cf0f80dd42e696657e42e636.tar.gz
mandoc-c368f1d502310930cf0f80dd42e696657e42e636.tar.zst
mandoc-c368f1d502310930cf0f80dd42e696657e42e636.zip
-man also now has unbound margins for literal context.
Diffstat (limited to 'man_term.c')
-rw-r--r--man_term.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/man_term.c b/man_term.c
index ee833bdc..f55726fb 100644
--- a/man_term.c
+++ b/man_term.c
@@ -1,4 +1,4 @@
-/* $Id: man_term.c,v 1.59 2010/03/24 20:10:53 kristaps Exp $ */
+/* $Id: man_term.c,v 1.60 2010/05/10 08:05:17 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -260,7 +260,6 @@ static int
pre_fi(DECL_ARGS)
{
- p->rmargin = p->maxrmargin = 65;
mt->fl &= ~MANT_LITERAL;
return(1);
}
@@ -271,10 +270,7 @@ static int
pre_nf(DECL_ARGS)
{
- p->rmargin = p->maxrmargin = 78;
- term_newln(p);
mt->fl |= MANT_LITERAL;
-
return(MAN_Vb != n->tok);
}
@@ -820,8 +816,10 @@ print_man_node(DECL_ARGS)
/* FIXME: this means that macro lines are munged! */
if (MANT_LITERAL & mt->fl) {
+ p->rmargin = p->maxrmargin = TERM_MAXMARGIN;
p->flags |= TERMP_NOSPACE;
term_flushln(p);
+ p->rmargin = p->maxrmargin = 65;
}
break;
default: