From 581eba212eeec68331e4aa4a904d7c2d72bac114 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Thu, 15 Jan 2015 04:26:39 +0000 Subject: Fatal errors no longer exist. If a file can be opened, mandoc will produce some output; at worst, the output may be almost empty. Simplifies error handling and frees a message type for future use. --- man.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'man.c') diff --git a/man.c b/man.c index 8e8cf725..b58cdd41 100644 --- a/man.c +++ b/man.c @@ -109,12 +109,11 @@ man_alloc(struct roff *roff, struct mparse *parse, return(p); } -int +void man_endparse(struct man *man) { man_macroend(man); - return(1); } int -- cgit