summaryrefslogtreecommitdiffstats
path: root/term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-06-22 10:40:04 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-06-22 10:40:04 +0000
commit39df69a9d68b05fb09136083471adee4d2817687 (patch)
tree4bc0ce1394239f29c068e622a00536d6206c6014 /term.c
parent02772d7cbebdade86dabcbbc9d19e72db2bd0b43 (diff)
downloadmandoc-39df69a9d68b05fb09136083471adee4d2817687.tar.gz
Reverted max column width 80 -> 78 (schwarze@openbsd.org).
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 5a9cf342..41f606c2 100644
--- a/term.c
+++ b/term.c
@@ -105,7 +105,7 @@ term_alloc(enum termenc enc)
if (NULL == (p = malloc(sizeof(struct termp))))
err(1, "malloc");
bzero(p, sizeof(struct termp));
- p->maxrmargin = 80;
+ p->maxrmargin = 78;
p->enc = enc;
return(p);
}