summaryrefslogtreecommitdiffstats
path: root/term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-06-11 07:26:35 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-06-11 07:26:35 +0000
commitf690e8836e76c3e77c127e546135ba106d53d2a7 (patch)
tree997f03a680582338cba2d325364fe1d9475cbb65 /term.c
parentc2a10113a9a63c28a9785d8792a825c1239b6dd8 (diff)
downloadmandoc-f690e8836e76c3e77c127e546135ba106d53d2a7.tar.gz
Fixed email address in manual AUTHOR reference.
Set max right margin to 80 columns (schwarze@openbsd.org). Fixed centre-field heading position (schwarze@openbsd.org). Also fixed -Tman centre-field.
Diffstat (limited to 'term.c')
-rw-r--r--term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/term.c b/term.c
index 55b32d6e..bc161bbb 100644
--- a/term.c
+++ b/term.c
@@ -106,7 +106,7 @@ term_alloc(enum termenc enc)
if (NULL == (p = malloc(sizeof(struct termp))))
err(1, "malloc");
bzero(p, sizeof(struct termp));
- p->maxrmargin = 78;
+ p->maxrmargin = 80;
p->enc = enc;
return(p);
}