summaryrefslogtreecommitdiffstats
path: root/mansearch.c
Commit message (Expand)AuthorAgeFilesLines
* delete trailing whitespace and space-tab sequences; no code change;Ingo Schwarze2019-07-011-1/+1
* In man(1) mode, i.e. when asking for a single manual page by name,Ingo Schwarze2019-04-301-2/+6
* Cleanup, no functional change:Ingo Schwarze2018-12-131-1/+0
* In apropos(1) output, stop sorting .Nm search results by nameIngo Schwarze2018-11-221-6/+2
* Improve POSIX compliance by making case-insensitive extendedIngo Schwarze2018-11-191-3/+4
* When finding a bogus database entry,Ingo Schwarze2017-08-221-0/+10
* No longer use names that only occur in the SYNOPSIS section as namesIngo Schwarze2017-08-021-18/+49
* Prefer arch-dependent over arch-independent pages if the name priority,Ingo Schwarze2017-07-191-3/+19
* Basic reporting of .Xrs to manual pages that don't existIngo Schwarze2017-07-011-3/+9
* Do not warn if a database file does not existIngo Schwarze2017-05-171-1/+2
* The apropos(1) manual still documents the unary -i operator forIngo Schwarze2017-04-181-1/+6
* Fix previous: i forgot explicit NUL termination;Ingo Schwarze2017-04-181-0/+2
* Restore -kO Nd, -kO Nm, -kO sec, and -kO arch to working order.Ingo Schwarze2017-04-171-24/+52
* A missing initialization could randomly cause regular expressionIngo Schwarze2017-03-031-0/+1
* Really protect <err.h> as already promised in the previous commit message.Ingo Schwarze2016-08-051-0/+2
* Linux compatibility: Work around the lack of EFTYPE and protect <err.h>.Ingo Schwarze2016-07-201-1/+2
* Remove the dependency on SQLite without loss of functionality.Ingo Schwarze2016-07-191-575/+471
* getopt(3) is declared in <unistd.h>, and <getopt.h> is not needed;Ingo Schwarze2016-07-091-1/+0
* Prefer warn(3) over perror(3) at the few places where it was used.Ingo Schwarze2016-01-081-5/+5
* No point in trying to go on when elementary database operationsIngo Schwarze2015-11-261-6/+9
* Without HAVE_ERR, don't try to include <err.h>, it probably isn't there.Ingo Schwarze2015-11-071-0/+2
* In ./configure, select a RE syntax for word boundaries supported by libc;Ingo Schwarze2015-11-061-0/+7
* Reduce the amount of code by moving the three copies of the ohashIngo Schwarze2015-10-131-37/+2
* Finally use __progname, err(3) and warn(3).Ingo Schwarze2015-10-111-17/+16
* modernize style: "return" is not a functionIngo Schwarze2015-10-061-23/+23
* Let man(1) and apropos(1) work even when the current directoryIngo Schwarze2015-04-011-35/+33
* Parse the new man.conf(5) "output" directive.Ingo Schwarze2015-03-271-3/+3
* When interpreting the -O argument as a macro name fails,Ingo Schwarze2015-03-111-2/+3
* When man(1) and apropos(1) look for a file man1/foo.1 but it's unavailable,Ingo Schwarze2015-02-271-3/+28
* Make the man(1) and apropos(1) options -s and -S much less expensive:Ingo Schwarze2015-01-201-48/+22
* When opening mandoc.db fails, tell the user in which directory.Ingo Schwarze2014-12-061-1/+3
* Make makewhatis(8) understand .so links to .gz pages.Ingo Schwarze2014-11-271-12/+7
* In man(1) mode, prefer file name matches over .Dt name matches overIngo Schwarze2014-11-181-6/+11
* In man(1) mode without -a, stop searching after the first manual treeIngo Schwarze2014-11-111-0/+8
* If a manual page is installed gzip(1)ed, let makewhatis(8) takeIngo Schwarze2014-09-031-4/+9
* In man(1) mode, change to the right directory before starting the parser,Ingo Schwarze2014-09-011-0/+1
* Bugfix: make whatis(1) case-insensitive again.Ingo Schwarze2014-08-211-0/+1
* Fully integrate apropos(1) into mandoc(1).Ingo Schwarze2014-08-171-27/+28
* Improve build system and autodetection.Ingo Schwarze2014-08-161-1/+1
* Get rid of HAVE_CONFIG_H, it is always defined; idea from libnbcompat.Ingo Schwarze2014-08-101-2/+2
* mmap(2) requires MAP_PRIVATE ^ MAP_SHARED for flags;Ingo Schwarze2014-08-091-1/+2
* Absurdly, the return value of sqlite3_column_text()Ingo Schwarze2014-08-051-5/+5
* If an old SQLite version doesn't provide SQLITE_DETERMINISTIC,Ingo Schwarze2014-08-051-0/+3
* Sort result pages first by section number, then by name.Ingo Schwarze2014-07-241-0/+20
* Fix whatis(1) to correctly match words instead of any substrings.Ingo Schwarze2014-07-121-22/+50
* Merge from OpenBSD - Marc Espie improved the ohash interface:Ingo Schwarze2014-06-201-9/+7
* Audit malloc(3)/calloc(3)/realloc(3) usage.Ingo Schwarze2014-04-231-3/+3
* improve SQL style: avoid "SELECT *", be explicit in what columns we want;Ingo Schwarze2014-04-231-4/+6
* KNF: case (FOO): -> case FOO:, remove /* LINTED */ and /* ARGSUSED */,Ingo Schwarze2014-04-201-12/+12
* Garbage collect one pair of needless parentheses in SQL code generation;Ingo Schwarze2014-04-171-7/+7