=================================================================== RCS file: /cvs/mandoc/man_macro.c,v retrieving revision 1.24 retrieving revision 1.25 diff -u -p -r1.24 -r1.25 --- mandoc/man_macro.c 2009/08/20 13:51:55 1.24 +++ mandoc/man_macro.c 2009/08/20 13:55:19 1.25 @@ -1,4 +1,4 @@ -/* $Id: man_macro.c,v 1.24 2009/08/20 13:51:55 kristaps Exp $ */ +/* $Id: man_macro.c,v 1.25 2009/08/20 13:55:19 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -236,6 +236,7 @@ blk_imp(MACRO_PROT_ARGS) { int w, la; char *p; + struct man_node *n; /* Close out prior scopes. */ @@ -251,6 +252,8 @@ blk_imp(MACRO_PROT_ARGS) if ( ! man_head_alloc(m, line, ppos, tok)) return(0); + n = m->last; + /* Add line arguments. */ for (;;) { @@ -268,7 +271,7 @@ blk_imp(MACRO_PROT_ARGS) /* Close out head and open body (unless MAN_SCOPE). */ - if (MAN_SCOPED & man_macros[tok].flags) { + if (n == m->last && MAN_SCOPED & man_macros[tok].flags) { m->flags |= MAN_BLINE; return(1); } else if ( ! rew_scope(MAN_HEAD, m, tok)) @@ -303,7 +306,7 @@ in_line_eoln(MACRO_PROT_ARGS) return(0); } - if (n == m->last && (MAN_SCOPED & man_macros[tok].flags)) { + if (n == m->last && MAN_SCOPED & man_macros[tok].flags) { m->flags |= MAN_ELINE; return(1); }