aboutsummaryrefslogtreecommitdiffstatshomepage
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
commite29a5b5a80c81fa6045785639e678bb968bd3e34 (patch)
tree65e5d43328c2cd77b05b0b67b13c7424f49c30bb
parentf54bc255ec6ce8e5cd01d9299f00e1a96baa51a4 (diff)
downloadmandoc-e29a5b5a80c81fa6045785639e678bb968bd3e34.tar.gz
mandoc-e29a5b5a80c81fa6045785639e678bb968bd3e34.tar.zst
mandoc-e29a5b5a80c81fa6045785639e678bb968bd3e34.zip
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/roff.c b/roff.c
index 5a78640e..c8661b6b 100644
--- a/roff.c
+++ b/roff.c
@@ -1,4 +1,4 @@
-/* $Id: roff.c,v 1.68 2010/05/15 18:43:59 kristaps Exp $ */
+/* $Id: roff.c,v 1.69 2010/05/15 18:48:32 kristaps Exp $ */
/*
* Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -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);
}