=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/mdoc.c,v retrieving revision 1.126 retrieving revision 1.127 diff -c -r1.126 -r1.127 *** src/usr.bin/mandoc/mdoc.c 2015/02/12 12:20:47 1.126 --- src/usr.bin/mandoc/mdoc.c 2015/02/12 13:00:27 1.127 *************** *** 1,4 **** ! /* $OpenBSD: mdoc.c,v 1.126 2015/02/12 12:20:47 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2012-2015 Ingo Schwarze --- 1,4 ---- ! /* $OpenBSD: mdoc.c,v 1.127 2015/02/12 13:00:27 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2012-2015 Ingo Schwarze *************** *** 599,606 **** * process within its context in the normal way). */ ! if (MDOC_Bl == n->tok && MDOC_BODY == n->type && ! LIST_column == n->norm->Bl.type) { /* `Bl' is open without any children. */ mdoc->flags |= MDOC_FREECOL; mdoc_macro(mdoc, MDOC_It, line, offs, &offs, buf); --- 599,606 ---- * process within its context in the normal way). */ ! if (n->tok == MDOC_Bl && n->type == MDOC_BODY && ! n->end == ENDBODY_NOT && n->norm->Bl.type == LIST_column) { /* `Bl' is open without any children. */ mdoc->flags |= MDOC_FREECOL; mdoc_macro(mdoc, MDOC_It, line, offs, &offs, buf); *************** *** 776,783 **** * context around the parsed macro. */ ! if (MDOC_Bl == n->tok && MDOC_BODY == n->type && ! LIST_column == n->norm->Bl.type) { mdoc->flags |= MDOC_FREECOL; mdoc_macro(mdoc, MDOC_It, ln, sv, &sv, buf); return(1); --- 776,783 ---- * context around the parsed macro. */ ! if (n->tok == MDOC_Bl && n->type == MDOC_BODY && ! n->end == ENDBODY_NOT && n->norm->Bl.type == LIST_column) { mdoc->flags |= MDOC_FREECOL; mdoc_macro(mdoc, MDOC_It, ln, sv, &sv, buf); return(1);