summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-05-15 18:48:32 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-05-15 18:48:32 +0000
commit3094579682f28cc9511e5e52f5fef2f4ee335f8c (patch)
treeeec7824f06b26f542ce26af2f64ea64e61db5bfe
parentd9799ca5825739321111cab10765f062d0ef116b (diff)
downloadmandoc-3094579682f28cc9511e5e52f5fef2f4ee335f8c.tar.gz
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.
-rw-r--r--roff.c2
1 files changed, 1 insertions, 1 deletions
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);
}