=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/man_term.c,v retrieving revision 1.38 retrieving revision 1.39 diff -c -r1.38 -r1.39 *** src/usr.bin/mandoc/man_term.c 2010/05/24 01:36:22 1.38 --- src/usr.bin/mandoc/man_term.c 2010/06/05 19:09:55 1.39 *************** *** 1,4 **** ! /* $Id: man_term.c,v 1.38 2010/05/24 01:36:22 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * --- 1,4 ---- ! /* $Id: man_term.c,v 1.39 2010/06/05 19:09:55 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * *************** *** 154,167 **** p = (struct termp *)arg; - /* - * XXX - * Hardcode the -man output width for now; - * it is not yet externally configurable, anyway. - */ - p->defrmargin = 65; - p->maxrmargin = p->defrmargin; p->overstep = 0; if (NULL == p->symtab) switch (p->enc) { --- 154,162 ---- p = (struct termp *)arg; p->overstep = 0; + p->maxrmargin = p->defrmargin; + p->tabwidth = 5; if (NULL == p->symtab) switch (p->enc) {