summaryrefslogtreecommitdiffstats
path: root/mansearch.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Rename the mpages.id column to mpages.pageid. There is no good reasonIngo Schwarze2014-04-161-17/+17
* Pass the function flags SQLITE_UTF8 (because SQLITE_ANY is deprecated)Ingo Schwarze2014-04-161-2/+4
* Oops, sorry, revert previous and commit the correct patch:Ingo Schwarze2014-04-151-4/+6
* At the end of mansearch(), fchdir() back to where we started from;Ingo Schwarze2014-04-151-0/+1
* Further apropos(1) speed optimization was trickier than anticipated.Ingo Schwarze2014-04-111-0/+48
* Next speed optimization step for the new apropos(1).Ingo Schwarze2014-04-101-13/+26
* After careful gprof(1)ing of the new apropos(1), move the descriptionsIngo Schwarze2014-04-091-15/+42
* Properly initialize malloc(3)ed memory.Ingo Schwarze2014-03-281-0/+1
* avoid repetitive code for asprintf error handlingIngo Schwarze2014-03-231-29/+11
* The files mandoc.c and mandoc.h contained both specialised low-levelIngo Schwarze2014-03-231-0/+1
* in apropos(1) output, sort names and avoid multiple section numbersIngo Schwarze2014-03-171-6/+54
* Always compare arch case-insensitively.Ingo Schwarze2014-01-191-0/+2
* Get rid of the local keys table, use the new mansearch_const.c.Ingo Schwarze2014-01-191-66/+28
* Remove the redundant "file" column from the "mlinks" table.Ingo Schwarze2014-01-061-9/+18
* Drop Nd from the mpages table, it is still in the keys table.Ingo Schwarze2014-01-061-6/+2
* Remove the obsolete file name column from the mpages table.Ingo Schwarze2014-01-051-23/+29
* Remove the obsolete sec and arch columns from the mpages table.Ingo Schwarze2014-01-051-3/+3
* Reimplement apropos -s NUM -S ARCH EXPR by internally converting it toIngo Schwarze2014-01-051-21/+51