=================================================================== RCS file: /cvs/mandoc/man_macro.c,v retrieving revision 1.61 retrieving revision 1.63 diff -u -p -r1.61 -r1.63 --- mandoc/man_macro.c 2011/04/17 09:08:19 1.61 +++ mandoc/man_macro.c 2011/06/18 17:36:52 1.63 @@ -1,4 +1,4 @@ -/* $Id: man_macro.c,v 1.61 2011/04/17 09:08:19 kristaps Exp $ */ +/* $Id: man_macro.c,v 1.63 2011/06/18 17:36:52 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * @@ -307,11 +307,6 @@ blk_exp(MACRO_PROT_ARGS) * anywhere. */ - if ( ! rew_scope(MAN_BODY, m, tok)) - return(0); - if ( ! rew_scope(MAN_BLOCK, m, tok)) - return(0); - if ( ! man_block_alloc(m, line, ppos, tok)) return(0); if ( ! man_head_alloc(m, line, ppos, tok)) @@ -484,6 +479,6 @@ man_args(struct man *m, int line, int *pos, char *buf, if ('\0' == *start) return(0); - *v = mandoc_getarg(m->parse, v, line, 1, pos); + *v = mandoc_getarg(m->parse, v, line, pos); return(1); }