=================================================================== RCS file: /cvs/mandoc/Attic/macro.c,v retrieving revision 1.36 retrieving revision 1.37 diff -u -p -r1.36 -r1.37 --- mandoc/Attic/macro.c 2009/01/15 15:46:45 1.36 +++ mandoc/Attic/macro.c 2009/01/15 17:38:57 1.37 @@ -1,4 +1,4 @@ -/* $Id: macro.c,v 1.36 2009/01/15 15:46:45 kristaps Exp $ */ +/* $Id: macro.c,v 1.37 2009/01/15 17:38:57 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -355,7 +355,7 @@ rewind_subblock(enum mdoc_type type, struct mdoc *mdoc break; else if (rewind_dobreak(tok, type, n)) continue; - return(mdoc_verr(mdoc, n, ERR_SCOPE_BREAK)); + return(mdoc_nerr(mdoc, n, "body scope broken")); } assert(n); @@ -384,7 +384,7 @@ rewind_expblock(struct mdoc *mdoc, int tok) break; else if (rewind_dobreak(tok, MDOC_BLOCK, n)) continue; - return(mdoc_verr(mdoc, n, ERR_SCOPE_BREAK)); + return(mdoc_nerr(mdoc, n, "macro scope broken")); } assert(n); @@ -414,7 +414,7 @@ rewind_impblock(struct mdoc *mdoc, int tok) break; else if (rewind_dobreak(tok, MDOC_BLOCK, n)) continue; - return(mdoc_verr(mdoc, n, ERR_SCOPE_BREAK)); + return(mdoc_nerr(mdoc, n, "macro scope broken")); } assert(n);