From c2dd68816c9e05ae3f31a96307caa577ff4db3dd Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Mon, 6 Jan 2014 03:02:46 +0000 Subject: 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. --- manpage.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'manpage.c') 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 * Copyright (c) 2013 Ingo Schwarze @@ -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); } -- cgit v1.2.3