=================================================================== RCS file: /cvs/mandoc/mdoc_macro.c,v retrieving revision 1.75 retrieving revision 1.76 diff -u -p -r1.75 -r1.76 --- mandoc/mdoc_macro.c 2010/05/31 10:28:04 1.75 +++ mandoc/mdoc_macro.c 2010/05/31 11:52:06 1.76 @@ -1,4 +1,4 @@ -/* $Id: mdoc_macro.c,v 1.75 2010/05/31 10:28:04 kristaps Exp $ */ +/* $Id: mdoc_macro.c,v 1.76 2010/05/31 11:52:06 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -1702,7 +1702,10 @@ phrase_ta(MACRO_PROT_ARGS) */ if (NULL == m->last || MDOC_BODY != m->last->type || - MDOC_It != m->last->tok) { + MDOC_It != m->last->tok || + NULL == m->last->parent->parent || + MDOC_Bl != m->last->parent->parent->tok || + LIST_column != m->last->parent->parent->data.list) { swarn(m, tok, line, ppos, n); return(0); }