diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-22 10:40:04 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-06-22 10:40:04 +0000 |
commit | 39df69a9d68b05fb09136083471adee4d2817687 (patch) | |
tree | 4bc0ce1394239f29c068e622a00536d6206c6014 /term.c | |
parent | 02772d7cbebdade86dabcbbc9d19e72db2bd0b43 (diff) | |
download | mandoc-39df69a9d68b05fb09136083471adee4d2817687.tar.gz |
Reverted max column width 80 -> 78 (schwarze@openbsd.org).
Diffstat (limited to 'term.c')
-rw-r--r-- | term.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |