=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/mdoc_term.c,v retrieving revision 1.175 retrieving revision 1.176 diff -c -r1.175 -r1.176 *** src/usr.bin/mandoc/mdoc_term.c 2014/08/08 15:10:15 1.175 --- src/usr.bin/mandoc/mdoc_term.c 2014/08/08 15:26:28 1.176 *************** *** 1,4 **** ! /* $Id: mdoc_term.c,v 1.175 2014/08/08 15:10:15 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2012, 2013, 2014 Ingo Schwarze --- 1,4 ---- ! /* $Id: mdoc_term.c,v 1.176 2014/08/08 15:26:28 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2012, 2013, 2014 Ingo Schwarze *************** *** 1766,1771 **** --- 1766,1774 ---- term_fontpush(p, TERMFONT_BOLD); p->offset = term_len(p, (p->defindent+1)/2); break; + case MDOC_BODY: + p->offset = term_len(p, p->defindent); + break; default: break; } *************** *** 1777,1783 **** termp_ss_post(DECL_ARGS) { ! if (MDOC_HEAD == n->type) term_newln(p); } --- 1780,1786 ---- termp_ss_post(DECL_ARGS) { ! if (n->type == MDOC_HEAD || n->type == MDOC_BODY) term_newln(p); }