aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/main.c
Commit message (Expand)AuthorAgeFilesLines
* shorten "outdated mandoc.db" warning message; requested by deraadt@Ingo Schwarze2015-04-161-5/+3
* No need to hardcode /usr/bin/ as the path to more(1); helps portability.Ingo Schwarze2015-04-031-2/+2
* First step towards parser unification:Ingo Schwarze2015-04-021-3/+4
* Actually use the new man.conf(5) "output" directive.Ingo Schwarze2015-03-271-9/+10
* Parse the new man.conf(5) "output" directive.Ingo Schwarze2015-03-271-11/+13
* Modernize documentation by inserting blanks between option lettersIngo Schwarze2015-03-271-4/+4
* Simplify: Now that rc is global anyway, no need to pass it aroundIngo Schwarze2015-03-171-27/+20
* When the user exits the pager before the pager has drained all inputIngo Schwarze2015-03-171-2/+13
* We can keep track of the pager PID without additional complexity.Ingo Schwarze2015-03-101-27/+23
* Fix a regression caused in rev. 1.212, reported by kristaps@:Ingo Schwarze2015-03-101-4/+22
* Allow compilation on Mac OS X, which doesn't have MACHINE defined.Kristaps Dzonsons2015-03-061-3/+5
* When man(1) and apropos(1) look for a file man1/foo.1 but it's unavailable,Ingo Schwarze2015-02-271-9/+20
* Delete the -V option. It serves no purpose but keeps confusing people.Ingo Schwarze2015-02-161-17/+5
* trim trailing white space, no code change;Ingo Schwarze2015-02-101-2/+2
* be more careful about argc == 0Ingo Schwarze2015-02-071-7/+10
* Enable the integrated man(1) even when database support is disabled,Ingo Schwarze2015-02-031-41/+15
* Split the -Werror message level into -Werror (broken manual, probablyIngo Schwarze2015-01-201-4/+8
* Let man(1) show manuals for the current architecture by default,Ingo Schwarze2015-01-161-1/+6
* Fatal errors no longer exist.Ingo Schwarze2015-01-151-8/+3
* if earlier files set a non-zero exit status,Ingo Schwarze2015-01-141-7/+13
* Be developer-friendly, 'cause OpenBSD devs like to:Ingo Schwarze2015-01-131-5/+106
* do not spawn a pager when there is no output; issue pointed out by deraadt@Ingo Schwarze2015-01-131-25/+36
* If man(1) only has one single argument, always interpret it as a name,Ingo Schwarze2015-01-011-2/+3
* When showing more than one formatted manual page, insert horizontal linesIngo Schwarze2014-12-311-2/+6
* Use -m for macro set selection in mandoc(1) mode only, not in man(1)Ingo Schwarze2014-12-211-8/+8
* update usage() and the list of non-standard (i.e. non-posix) options;Ingo Schwarze2014-12-181-3/+5
* Be a bit more lenient in what to accept for section names givenIngo Schwarze2014-12-171-6/+7
* Let "man n open" do the same as "man -s n open" again, that is,Ingo Schwarze2014-12-151-4/+5
* Guard some come needed for database support only by #if HAVE_SQLITE3.Ingo Schwarze2014-12-111-5/+20
* Support choosing alternative binary and manual names from configure.local,Ingo Schwarze2014-12-091-6/+5
* Integrate the makewhatis binary into the mandoc binaryIngo Schwarze2014-12-091-1/+10
* implement help(1)Ingo Schwarze2014-12-051-9/+22
* Switch the default output mode from -Tascii to -Tlocale.Ingo Schwarze2014-12-021-2/+2
* Simplify the mparse_open()/mparse_wait() interface.Ingo Schwarze2014-11-261-8/+4
* In man(1) mode without -a, stop searching after the first manual treeIngo Schwarze2014-11-111-1/+5
* Let -h imply -c (that is, not use the pager).Ingo Schwarze2014-11-111-1/+2
* implement -h (synopsis only) for preformatted (cat) pages;Ingo Schwarze2014-11-111-15/+55
* add -K to usage() and wrap nicely; from jmc@Ingo Schwarze2014-10-301-3/+3
* Make the character table available to libroff so it can check theIngo Schwarze2014-10-281-18/+20
* integrate preconv(1) into mandoc(1);Ingo Schwarze2014-10-251-3/+29
* plug file descriptor leaks on read or write failure;Ingo Schwarze2014-10-181-4/+5
* Add *.gz support to apropos(1) -a, man(1), and even mandoc(1).Ingo Schwarze2014-09-031-14/+23
* If a manual page is installed gzip(1)ed, let makewhatis(8) takeIngo Schwarze2014-09-031-2/+2
* Implement the traditional -h option for man(1): show the SYNOPSIS only.Ingo Schwarze2014-09-031-5/+9
* In man(1) mode, change to the right directory before starting the parser,Ingo Schwarze2014-09-011-4/+6
* Introduce a man(1) -l option as an alias for mandoc -a.Ingo Schwarze2014-08-301-9/+14
* without search results, skip the processing loops and the parserIngo Schwarze2014-08-231-1/+9
* Let man(1) display preformatted manuals by simply reading themIngo Schwarze2014-08-231-20/+56
* implement man(1) quirk: section argument without -sIngo Schwarze2014-08-221-1/+17
* implement MANPAGER and PAGERIngo Schwarze2014-08-221-11/+49