| Commit message (Expand) | Author | Age | Files | Lines |
* | garbage collect unused EXAMPLEDIR, forgotten in the CSS cleanup; | Ingo Schwarze | 2015-11-07 | 3 | -5/+0 |
* | Install the soelim(1) binary and manual to the right places. | Ingo Schwarze | 2015-11-07 | 1 | -2/+4 |
* | In ./configure, select a RE syntax for word boundaries supported by libc; | Ingo Schwarze | 2015-11-06 | 5 | -6/+65 |
* | merge pledge(2) support from OpenBSD | Ingo Schwarze | 2015-11-06 | 5 | -0/+53 |
* | Use getprogname(3) rather than __progname. | Ingo Schwarze | 2015-11-06 | 8 | -31/+76 |
* | Use include files "header.html" and "footer.html" rather than a | Ingo Schwarze | 2015-11-05 | 3 | -10/+26 |
* | Unify the three stylesheets into a single CSS file. | Ingo Schwarze | 2015-11-05 | 7 | -149/+27 |
* | demandoc(1) needs to link against -lutil, too | Ingo Schwarze | 2015-11-05 | 1 | -1/+1 |
* | remove a stray iso-latin-1 character; noticed by bentley@ | Ingo Schwarze | 2015-11-05 | 1 | -1/+1 |
* | specify option ordering in the DESCRIPTION section; | Ingo Schwarze | 2015-11-05 | 1 | -0/+5 |
* | If a .Bd block has no arguments at all, drop the block and only keep | Ingo Schwarze | 2015-10-30 | 5 | -0/+20 |
* | Do not access a NULL pointer when a .Bd macro has no arguments at all. | Ingo Schwarze | 2015-10-30 | 1 | -0/+3 |
* | apply bold and italic to all non-ASCII Unicode codepoints, | Ingo Schwarze | 2015-10-23 | 1 | -1/+1 |
* | use the new function man_validate() here, too | Ingo Schwarze | 2015-10-22 | 4 | -3/+9 |
* | move man(7) validation into the dedicated validation phase, too | Ingo Schwarze | 2015-10-22 | 8 | -55/+63 |
* | If no output device was allocated because no file wanted to produce output, | Ingo Schwarze | 2015-10-22 | 1 | -15/+17 |
* | Move all mdoc(7) node validation done before child parsing | Ingo Schwarze | 2015-10-21 | 4 | -273/+245 |
* | In order to become able to generate syntax tree nodes on the roff(7) | Ingo Schwarze | 2015-10-20 | 14 | -170/+381 |
* | style cleanup, no functional change | Ingo Schwarze | 2015-10-19 | 1 | -55/+58 |
* | Simplify, no functional change: | Ingo Schwarze | 2015-10-19 | 1 | -35/+51 |
* | including <ohash.h> requires including <stdint.h> beforehand; | Ingo Schwarze | 2015-10-19 | 1 | -0/+1 |
* | Very tricky diff to fix macro interpretation and spacing around tabs | Ingo Schwarze | 2015-10-17 | 4 | -42/+79 |
* | Delete two preprocessor constants that are no longer used. | Ingo Schwarze | 2015-10-15 | 2 | -5/+0 |
* | Simplify the part of args() that is handling .Bl -column phrases: | Ingo Schwarze | 2015-10-15 | 1 | -72/+27 |
* | When blk_full() handles an .It line in .Bl -column and indirectly | Ingo Schwarze | 2015-10-15 | 1 | -0/+5 |
* | Reject the escape sequences \[uD800] to \[uDFFF] in the parser. | Ingo Schwarze | 2015-10-13 | 1 | -0/+3 |
* | Major character table cleanup: | Ingo Schwarze | 2015-10-13 | 22 | -632/+469 |
* | Reduce the amount of code by moving the three copies of the ohash | Ingo Schwarze | 2015-10-13 | 7 | -131/+109 |
* | Delete an assignment that is unconditionally overwritten two lines later; | Ingo Schwarze | 2015-10-12 | 1 | -1/+0 |
* | Garbage collect an unused variable, no functional change; | Ingo Schwarze | 2015-10-12 | 1 | -3/+2 |
* | Check the right pointer against NULL; | Ingo Schwarze | 2015-10-12 | 1 | -1/+1 |
* | Use "-" rather than "\(hy" for the heads of .Bl -dash and -hyphen lists. | Ingo Schwarze | 2015-10-12 | 1 | -1/+1 |
* | Clear dform and dsec when exiting a first-level directory in treescan(). | Ingo Schwarze | 2015-10-12 | 1 | -19/+22 |
* | Fix an obvious bug found during the /* FALLTHROUGH */ cleanup: | Ingo Schwarze | 2015-10-12 | 1 | -1/+1 |
* | To make the code more readable, delete 283 /* FALLTHROUGH */ comments | Ingo Schwarze | 2015-10-12 | 21 | -287/+5 |
* | Drop tags containing a blank character: | Ingo Schwarze | 2015-10-11 | 1 | -1/+1 |
* | Finally use __progname, err(3) and warn(3). | Ingo Schwarze | 2015-10-11 | 14 | -130/+250 |
* | Mention that the first argument of .Pf does not need escaping. | Ingo Schwarze | 2015-10-11 | 1 | -4/+8 |
* | Decide whether to use_pager as early as possible, | Ingo Schwarze | 2015-10-10 | 1 | -3/+5 |
* | modernize style: "return" is not a function | Ingo Schwarze | 2015-10-06 | 65 | -878/+882 |
* | improve wording and start a new sentence on a new line; from jmc@ | Ingo Schwarze | 2015-10-06 | 1 | -2/+3 |
* | Theo found a stray blank in HTML output. | Ingo Schwarze | 2015-09-29 | 1 | -0/+6 |
* | briefly document -T tree output | Ingo Schwarze | 2015-09-26 | 1 | -0/+40 |
* | Show the flags MDOC_DELIMO, MDOC_DELIMC, MDOC_EOS, and MAN_EOS. | Ingo Schwarze | 2015-09-26 | 1 | -7/+17 |
* | /* NOTREACHED */ after abort() is silly, delete it | Ingo Schwarze | 2015-09-26 | 14 | -28/+2 |
* | resolve code duplication and do style cleanup in mdoc_nm_pre(), | Ingo Schwarze | 2015-09-26 | 1 | -8/+4 |
* | Fix multiple aspects of SYNOPSIS .Nm formatting: | Ingo Schwarze | 2015-09-26 | 1 | -2/+3 |
* | typos; found and fixed by sobrado@ | Ingo Schwarze | 2015-09-24 | 2 | -6/+6 |
* | Trailing whitespace is significant when determining the width of a tag | Ingo Schwarze | 2015-09-21 | 4 | -10/+17 |
* | no more _subdir; Jan Stary <hans at stare dot cz> | Ingo Schwarze | 2015-09-21 | 1 | -18/+0 |