summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/main.c
AgeCommit message (Expand)Author
2017-08-21When the stdout stream gets broken, there is no point in readingIngo Schwarze
2017-07-26Cast the return value of chdir(2) to void. We already have a commentIngo Schwarze
2017-07-20For -Tlint, put parser messages on stdout instead of stderr.Ingo Schwarze
2017-07-04Printing "BASE:" in messages about violations of base system conventionsIngo Schwarze
2017-07-02If a single page references the same non-existent manual more thanIngo Schwarze
2017-07-02add warning "cross reference to self"; inspired by mdoclintIngo Schwarze
2017-07-01When checking cross references with -Tlint, ultimately fall back toIngo Schwarze
2017-07-01When checking the validity of cross references with -Tlint,Ingo Schwarze
2017-07-01Basic reporting of .Xrs to manual pages that don't existIngo Schwarze
2017-06-24Split -Wstyle into -Wstyle and the even lower -Wbase, and addIngo Schwarze
2017-06-03enable -Wstyle by default in -Tlint; OK jmc@Ingo Schwarze
2017-05-17Delete the -T xhtml command line option.Ingo Schwarze
2017-05-16Introduce a new mandoc(1) message level, -W style, below -W warning.Ingo Schwarze
2017-04-18Now that global -i is gone, pass -i through to the apropos(1)Ingo Schwarze
2017-04-18Delete the undocumented and unimplemented man(1) -i (interactiveIngo Schwarze
2017-03-27simplify the SYNOPSIS as well, just like the option lists;Ingo Schwarze
2017-03-20Silently ignore invalid -m input formats rather than erroring out.Ingo Schwarze
2017-03-03new -mdoc -Tmarkdown output mode; OK millert@ reyk@ tb@;Ingo Schwarze
2017-02-22Since SQLite is gone, we no longer need the "flock" pledge.Ingo Schwarze
2017-02-16Fix rev. 1.183: -O syntax is different in default apropos(1) outputIngo Schwarze
2017-02-10In -Ttree output mode, show the BROKEN node flag andIngo Schwarze
2017-02-09Be consistent in protecting __attribute__ attributes with __;Ingo Schwarze
2017-01-27warn about invalid output optionsIngo Schwarze
2017-01-09Use stdout rather than stdin for controlling the terminalIngo Schwarze
2017-01-09Warnings and errors that occur during mdoc_validate()Ingo Schwarze
2016-09-18We cannot use fputs(3) in passthrough() because the stdout streamIngo Schwarze
2016-09-18Make sure an output device is allocated before calling terminal_sepline(),Ingo Schwarze
2016-08-09fix printf("%s", NULL);Ingo Schwarze
2016-08-01Remove the dependency on SQLite without loss of functionality.Ingo Schwarze
2016-07-15To remove the const qualifier from a pointer to an object - eitherIngo Schwarze
2016-07-15Fix previous: the mandocdb() prototype was already there, it justIngo Schwarze
2016-07-15add missing prototypes, no code change;Ingo Schwarze
2016-07-08ISO C99 7.19.2.5 doesn't like mixing putchar(3) and putwchar(3) onIngo Schwarze
2016-04-14Fix a process group race.Ingo Schwarze
2016-04-13Give manuals in purely numerical sections priority over manuals ofIngo Schwarze
2016-01-16Unbreak reading from stdin after recent parse() restructuring.Florian Obser
2016-01-08Simplify the mparse_open() interface.Ingo Schwarze
2016-01-08It was very surprising that a function called mparse_readfd()Ingo Schwarze
2015-12-15pledge(2) style:Ingo Schwarze
2015-11-20Fix multiple issues regarding process group and signal mask handlingIngo Schwarze
2015-11-14Fix an issue reported by deraadt@: When hitting Ctrl-Backslash (= SIGQUIT)Ingo Schwarze
2015-11-07Modernization, no functional change intended:Ingo Schwarze
2015-11-06correct exit status on pledge(2) errorsIngo Schwarze
2015-11-06Use getprogname(3) rather than __progname.Ingo Schwarze
2015-10-22move man(7) validation into the dedicated validation phase, tooIngo Schwarze
2015-10-22If no output device was allocated because no file wanted to produce output,Ingo Schwarze
2015-10-20In order to become able to generate syntax tree nodes on the roff(7)Ingo Schwarze
2015-10-19Simplify, no functional change:Ingo Schwarze
2015-10-16Once apropos(1) or man(1) are done with database access, or if theIngo Schwarze
2015-10-16Implement real "flock" request and add it to userland programs thatTodd C. Miller