summaryrefslogtreecommitdiffstats
path: root/mansearch.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-03-11 13:11:22 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-03-11 13:11:22 +0000
commitb68603956c1ef2a1054c002436569a922e602d3b (patch)
tree267df192f0a6587beb3ae5bb472e5c19ca72a053 /mansearch.c
parenta6b05481ff237dc3c50886dab2642a2d007a78ff (diff)
downloadmandoc-b68603956c1ef2a1054c002436569a922e602d3b.tar.gz
When interpreting the -O argument as a macro name fails,
fall back to showing Nd rather than not showing anything. Issue reported by jmc@.
Diffstat (limited to 'mansearch.c')
-rw-r--r--mansearch.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mansearch.c b/mansearch.c
index 72324544..f0046de9 100644
--- a/mansearch.c
+++ b/mansearch.c
@@ -195,8 +195,8 @@ mansearch(const struct mansearch *search,
if (NULL == (e = exprcomp(search, argc, argv)))
goto out;
- outbit = 0;
if (NULL != search->outkey) {
+ outbit = TYPE_Nd;
for (indexbit = 0, iterbit = 1;
indexbit < mansearch_keymax;
indexbit++, iterbit <<= 1) {
@@ -206,7 +206,8 @@ mansearch(const struct mansearch *search,
break;
}
}
- }
+ } else
+ outbit = 0;
/*
* Save a descriptor to the current working directory.