diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-15 18:48:32 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-15 18:48:32 +0000 |
commit | 3094579682f28cc9511e5e52f5fef2f4ee335f8c (patch) | |
tree | eec7824f06b26f542ce26af2f64ea64e61db5bfe /roff.c | |
parent | d9799ca5825739321111cab10765f062d0ef116b (diff) | |
download | mandoc-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.
Diffstat (limited to 'roff.c')
-rw-r--r-- | roff.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |