=================================================================== RCS file: /cvs/mandoc/term.c,v retrieving revision 1.79 retrieving revision 1.80 diff -u -p -r1.79 -r1.80 --- mandoc/term.c 2009/06/17 18:42:42 1.79 +++ mandoc/term.c 2009/06/22 10:40:04 1.80 @@ -1,4 +1,4 @@ -/* $Id: term.c,v 1.79 2009/06/17 18:42:42 kristaps Exp $ */ +/* $Id: term.c,v 1.80 2009/06/22 10:40:04 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -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); }