From: Ingo Schwarze Date: Mon, 15 Jul 2019 21:41:08 +0000 (+0000) Subject: don't print the final heads-up about messages X-Git-Tag: VERSION_1_14_6~219 X-Git-Url: https://git.cameronkatri.com/mandoc.git/commitdiff_plain/48ed051e49ce663a8f2cea764807791fd842ef8e don't print the final heads-up about messages when a search did not yield any manual pages to display; issue found with regress/usr.bin/mandoc/db/ --- diff --git a/main.c b/main.c index 93c08205..a535023b 100644 --- a/main.c +++ b/main.c @@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.330 2019/07/14 18:16:13 schwarze Exp $ */ +/* $Id: main.c,v 1.331 2019/07/15 21:41:08 schwarze Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons * Copyright (c) 2010-2012, 2014-2019 Ingo Schwarze @@ -727,7 +727,8 @@ out: signum = WSTOPSIG(status); } tag_unlink(); - } else if (curp.outtype != OUTT_LINT) + } else if (curp.outtype != OUTT_LINT && + (search.argmode == ARG_FILE || sz > 0)) mandoc_msg_summary(); return (int)mandoc_msg_getrc();