From 38e9ca6f18d04678d360f464a272f9866b42e4a4 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Sun, 24 Apr 2011 23:51:17 +0000 Subject: [PATCH] User defined macros may invoke high-level macros. The latter got lost due to a regression in rev. 1.130. ok kristaps@ --- roff.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/roff.c b/roff.c index 2029bd48..bb612385 100644 --- a/roff.c +++ b/roff.c @@ -1,4 +1,4 @@ -/* $Id: roff.c,v 1.136 2011/04/19 16:38:48 kristaps Exp $ */ +/* $Id: roff.c,v 1.137 2011/04/24 23:51:17 schwarze Exp $ */ /* * Copyright (c) 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010, 2011 Ingo Schwarze @@ -829,8 +829,7 @@ roff_block_sub(ROFF_ARGS) * pulling it out of the hashtable. */ - if (ROFF_MAX == (t = roff_parse(r, *bufp, &pos))) - return(ROFF_IGN); + t = roff_parse(r, *bufp, &pos); /* * Macros other than block-end are only significant -- 2.47.1