=================================================================== RCS file: /cvs/mandoc/mdoc.c,v retrieving revision 1.142 retrieving revision 1.143 diff -u -p -r1.142 -r1.143 --- mandoc/mdoc.c 2010/05/31 15:42:09 1.142 +++ mandoc/mdoc.c 2010/05/31 15:50:48 1.143 @@ -1,4 +1,4 @@ -/* $Id: mdoc.c,v 1.142 2010/05/31 15:42:09 kristaps Exp $ */ +/* $Id: mdoc.c,v 1.143 2010/05/31 15:50:48 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -567,7 +567,8 @@ mdoc_ptext(struct mdoc *m, int line, char *buf, int of * should process within its context). */ - if (MDOC_Bl == n->tok && LIST_column == n->data.list) { + if (MDOC_Bl == n->tok && MDOC_BODY == n->type && + LIST_column == n->data.list) { m->flags |= MDOC_FREECOL; return(mdoc_macro(m, MDOC_It, line, offs, &offs, buf)); }