From 437eb74af037fff6e93890f2a4f81426d7142fab Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Fri, 14 Dec 2018 01:18:25 +0000 Subject: Major cleanup; may imply minor changes in edge cases of error reporting. Finally, drop support for the run-time configurable mandocmsg() callback. It was over-engineered from the start, never used for anything in a decade, and repeatedly caused maintenance headaches. Consolidate reporting infrastructure into two files, mandoc.h and mandoc_msg.c, mopping up the bits and pieces that were scattered around main.c, read.c, mandoc_parse.h, libmandoc.h, the prototypes of four parsing-related functions, and both parser structs. --- demandoc.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'demandoc.c') diff --git a/demandoc.c b/demandoc.c index 4e775c19..c8dd35f9 100644 --- a/demandoc.c +++ b/demandoc.c @@ -1,4 +1,4 @@ -/* $Id: demandoc.c,v 1.30 2018/12/13 11:55:46 schwarze Exp $ */ +/* $Id: demandoc.c,v 1.31 2018/12/14 01:18:25 schwarze Exp $ */ /* * Copyright (c) 2011 Kristaps Dzonsons * @@ -79,8 +79,7 @@ main(int argc, char *argv[]) argv += optind; mchars_alloc(); - mp = mparse_alloc(MPARSE_SO, MANDOCERR_MAX, NULL, - MANDOC_OS_OTHER, NULL); + mp = mparse_alloc(MPARSE_SO, MANDOC_OS_OTHER, NULL); assert(mp); if (argc < 1) -- cgit v1.2.3