=================================================================== RCS file: /cvs/mandoc/mdoc_macro.c,v retrieving revision 1.43 retrieving revision 1.44 diff -u -p -r1.43 -r1.44 --- mandoc/mdoc_macro.c 2010/03/29 19:28:04 1.43 +++ mandoc/mdoc_macro.c 2010/03/29 19:45:42 1.44 @@ -1,4 +1,4 @@ -/* $Id: mdoc_macro.c,v 1.43 2010/03/29 19:28:04 kristaps Exp $ */ +/* $Id: mdoc_macro.c,v 1.44 2010/03/29 19:45:42 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -904,10 +904,10 @@ blk_full(MACRO_PROT_ARGS) if ( ! mdoc_block_alloc(m, line, ppos, tok, arg)) return(0); + if ( ! mdoc_head_alloc(m, line, ppos, tok)) + return(0); - if (0 == buf[*pos]) { - if ( ! mdoc_head_alloc(m, line, ppos, tok)) - return(0); + if ('\0' == buf[*pos]) { if ( ! rew_sub(MDOC_HEAD, m, tok, line, ppos)) return(0); if ( ! mdoc_body_alloc(m, line, ppos, tok)) @@ -915,9 +915,6 @@ blk_full(MACRO_PROT_ARGS) return(1); } - if ( ! mdoc_head_alloc(m, line, ppos, tok)) - return(0); - /* Immediately close out head and enter body, if applicable. */ if (0 == dohead) { @@ -1051,10 +1048,11 @@ blk_part_imp(MACRO_PROT_ARGS) /* Clean-ups to leave in a consistent state. */ - if (NULL == body && ! mdoc_body_alloc(m, line, ppos, tok)) - return(0); - - body = m->last; + if (NULL == body) { + if ( ! mdoc_body_alloc(m, line, ppos, tok)) + return(0); + body = m->last; + } /* * If we can't rewind to our body, then our scope has already