=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/term_ascii.c,v retrieving revision 1.54 retrieving revision 1.55 diff -c -r1.54 -r1.55 *** src/usr.bin/mandoc/term_ascii.c 2022/08/16 17:44:53 1.54 --- src/usr.bin/mandoc/term_ascii.c 2023/11/13 19:13:00 1.55 *************** *** 1,4 **** ! /* $OpenBSD: term_ascii.c,v 1.54 2022/08/16 17:44:53 schwarze Exp $ */ /* * Copyright (c) 2010, 2011 Kristaps Dzonsons * Copyright (c) 2014,2015,2017,2018,2020 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: term_ascii.c,v 1.55 2023/11/13 19:13:00 schwarze Exp $ */ /* * Copyright (c) 2010, 2011 Kristaps Dzonsons * Copyright (c) 2014,2015,2017,2018,2020 Ingo Schwarze *************** *** 64,69 **** --- 64,70 ---- p->maxtcol = 1; p->line = 1; + p->defindent = 5; p->defrmargin = p->lastrmargin = 78; p->fontq = mandoc_reallocarray(NULL, (p->fontsz = 8), sizeof(*p->fontq)); *************** *** 112,121 **** } } ! if (outopts->mdoc) { p->mdocstyle = 1; - p->defindent = 5; - } if (outopts->indent) p->defindent = outopts->indent; if (outopts->width) --- 113,120 ---- } } ! if (outopts->mdoc) p->mdocstyle = 1; if (outopts->indent) p->defindent = outopts->indent; if (outopts->width)