aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/manpage.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-01-06 03:02:46 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-01-06 03:02:46 +0000
commitc2dd68816c9e05ae3f31a96307caa577ff4db3dd (patch)
treeecd4eaa940f486430e1df4191069df42070c6a5b /manpage.c
parent8bb474af93ace25f45da1da08a3c358cf9684b6d (diff)
downloadmandoc-c2dd68816c9e05ae3f31a96307caa577ff4db3dd.tar.gz
mandoc-c2dd68816c9e05ae3f31a96307caa577ff4db3dd.tar.zst
mandoc-c2dd68816c9e05ae3f31a96307caa577ff4db3dd.zip
Drop Nd from the mpages table, it is still in the keys table.
This shrinks the database in standard mode by 3%, in -Q mode by 9%, without loss of functionality.
Diffstat (limited to 'manpage.c')
-rw-r--r--manpage.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/manpage.c b/manpage.c
index 99824d18..00793ccc 100644
--- a/manpage.c
+++ b/manpage.c
@@ -1,4 +1,4 @@
-/* $Id: manpage.c,v 1.6 2013/12/31 03:41:14 schwarze Exp $ */
+/* $Id: manpage.c,v 1.7 2014/01/06 03:02:46 schwarze Exp $ */
/*
* Copyright (c) 2012 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2013 Ingo Schwarze <schwarze@openbsd.org>
@@ -90,7 +90,7 @@ main(int argc, char *argv[])
search.deftype = TYPE_Nm | TYPE_Nd;
manpath_parse(&paths, conf_file, defpaths, auxpaths);
- ch = mansearch(&search, &paths, argc, argv, NULL, &res, &sz);
+ ch = mansearch(&search, &paths, argc, argv, "Nd", &res, &sz);
manpath_free(&paths);
if (0 == ch)
@@ -107,9 +107,8 @@ main(int argc, char *argv[])
for (i = 0; i < sz; i++) {
printf("%6zu %s: %s\n",
- i + 1, res[i].names, res[i].desc);
+ i + 1, res[i].names, res[i].output);
free(res[i].names);
- free(res[i].desc);
free(res[i].output);
}