From 3094579682f28cc9511e5e52f5fef2f4ee335f8c Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sat, 15 May 2010 18:48:32 +0000 Subject: Magic fix for bogus manuals making -man puke: I don't care if it's magic because roff instructions will be nixed from the underlying systems anyway. --- roff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roff.c b/roff.c index 88f8f060..0db87efa 100644 --- a/roff.c +++ b/roff.c @@ -305,7 +305,7 @@ roff_new_close(ROFF_ARGS) if ( ! (*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL)) return(ROFF_ERR); */ - return(ROFF_CONT); + return(ROFF_IGN); } -- cgit