Age | Commit message (Expand) | Author |
2014-12-06 | When opening mandoc.db fails, tell the user in which directory. | Ingo Schwarze |
2014-11-27 | Make makewhatis(8) understand .so links to .gz pages. | Ingo Schwarze |
2014-11-18 | In man(1) mode, prefer file name matches over .Dt name matches over | Ingo Schwarze |
2014-11-11 | In man(1) mode without -a, stop searching after the first manual tree | Ingo Schwarze |
2014-09-03 | If a manual page is installed gzip(1)ed, let makewhatis(8) take | Ingo Schwarze |
2014-09-01 | In man(1) mode, change to the right directory before starting the parser, | Ingo Schwarze |
2014-08-27 | Add an implementation of man(1) into the /usr/bin/mandoc binary and | Ingo Schwarze |
2014-08-21 | Bugfix: make whatis(1) case-insensitive again. | Ingo Schwarze |
2014-08-09 | mmap(2) requires MAP_PRIVATE ^ MAP_SHARED for flags; | Ingo Schwarze |
2014-08-08 | Absurdly, the return value of sqlite3_column_text() | Ingo Schwarze |
2014-07-24 | Sort result pages first by section number, then by name. | Ingo Schwarze |
2014-07-12 | Fix whatis(1) to correctly match words instead of any substrings. | Ingo Schwarze |
2014-05-12 | adjust to ohash being in libutil now, and to the interface changes. | Marc Espie |
2014-04-23 | Audit malloc(3)/calloc(3)/realloc(3) usage. | Ingo Schwarze |
2014-04-23 | improve SQL style: avoid "SELECT *", be explicit in what columns we want; | Ingo Schwarze |
2014-04-20 | KNF: case (FOO): -> case FOO, remove /* LINTED */ and /* ARGSUSED */, | Ingo Schwarze |
2014-04-17 | Garbage collect one pair of needless parentheses in SQL code generation; | Ingo Schwarze |
2014-04-16 | Rename the mpages.id column to mpages.pageid. There is no good reason | Ingo Schwarze |
2014-04-16 | Pass the function flags SQLITE_UTF8 (because SQLITE_ANY is deprecated) | Ingo Schwarze |
2014-04-15 | At the end of mansearch(), fchdir() back to where we started from; | Ingo Schwarze |
2014-04-11 | Further apropos(1) speed optimization was trickier than anticipated. | Ingo Schwarze |
2014-04-10 | Next speed optimization step for the new apropos(1). | Ingo Schwarze |
2014-04-09 | After careful gprof(1)ing of the new apropos(1), move the descriptions | Ingo Schwarze |
2014-03-28 | Properly initialize malloc(3)ed memory. | Ingo Schwarze |
2014-03-21 | avoid repetitive code for asprintf error handling | Ingo Schwarze |
2014-03-21 | The files mandoc.c and mandoc.h contained both specialised low-level | Ingo Schwarze |
2014-03-17 | in apropos(1) output, sort names and avoid multiple section numbers | Ingo Schwarze |
2014-01-19 | Always compare arch case-insensitively. | Ingo Schwarze |
2014-01-19 | Get rid of the local keys table, use the new mansearch_const.c. | Ingo Schwarze |
2014-01-06 | Remove the redundant "file" column from the "mlinks" table. | Ingo Schwarze |
2014-01-06 | Drop Nd from the mpages table, it is still in the keys table. | Ingo Schwarze |
2014-01-05 | Remove the obsolete file name column from the mpages table. | Ingo Schwarze |
2014-01-05 | Remove the obsolete sec and arch columns from the mpages table. | Ingo Schwarze |
2014-01-05 | Reimplement apropos -s NUM -S ARCH EXPR by internally converting it to | Ingo Schwarze |
2014-01-05 | Put section and architecture info into the keys table, | Ingo Schwarze |
2014-01-04 | New implementation of complex search criteria using \(, \), -a because | Ingo Schwarze |
2013-12-31 | Experimental feature to let apropos(1) show different keys than .Nd. | Ingo Schwarze |
2013-12-31 | Split buildnames() out of mansearch(); the latter function is getting | Ingo Schwarze |
2013-12-31 | Replace the Berkeley-DB based mandocdb(8) by an SQLite3-based version, | Ingo Schwarze |