=================================================================== RCS file: /cvs/mandoc/term.c,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- mandoc/term.c 2009/06/10 20:18:44 1.75 +++ mandoc/term.c 2009/06/11 07:26:35 1.76 @@ -1,4 +1,4 @@ -/* $Id: term.c,v 1.75 2009/06/10 20:18:44 kristaps Exp $ */ +/* $Id: term.c,v 1.76 2009/06/11 07:26:35 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -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); }