| Commit message (Expand) | Author | Age | Files | Lines |
* | preserve comments before .Dd when converting mdoc(7) to man(7) | Ingo Schwarze | 2018-04-11 | 1 | -6/+29 |
* | Two new low-level roff(7) features: | Ingo Schwarze | 2018-04-10 | 1 | -14/+43 |
* | When accessing an undefined number register, define it to be zero, like | Ingo Schwarze | 2018-04-09 | 1 | -23/+19 |
* | Using an undefined string or macro will cause it to be defined as empty. | Ingo Schwarze | 2018-04-09 | 1 | -42/+81 |
* | The .Dd and .TH macros must interrupt .ce, too; | Ingo Schwarze | 2017-07-14 | 1 | -1/+2 |
* | Explicitly initialize a variable where the compiler is (understandably) | Ingo Schwarze | 2017-07-14 | 1 | -5/+6 |
* | eqn(7) .EQ has to break man(7) next-line scope, or tree corruption | Ingo Schwarze | 2017-07-13 | 1 | -0/+2 |
* | Simplify by creating struct roff_node syntax tree nodes for tbl(7) | Ingo Schwarze | 2017-07-08 | 1 | -36/+36 |
* | fix an assertion failure triggered by .ce in next-line scope; | Ingo Schwarze | 2017-07-08 | 1 | -1/+2 |
* | 1. Eliminate struct eqn, instead use the existing members | Ingo Schwarze | 2017-07-08 | 1 | -47/+37 |
* | Fix handling of \} on roff request lines. | Ingo Schwarze | 2017-07-04 | 1 | -15/+21 |
* | add support for the MT and ME mailto macros, used for example in wg(8); | Ingo Schwarze | 2017-06-25 | 1 | -1/+1 |
* | Split -Wstyle into -Wstyle and the even lower -Wbase, and add | Ingo Schwarze | 2017-06-24 | 1 | -5/+5 |
* | Implement appending to standard man(7) and mdoc(7) macros with .am. | Ingo Schwarze | 2017-06-18 | 1 | -135/+185 |
* | style message about duplicate RCS ids; inspired by mdoclint | Ingo Schwarze | 2017-06-17 | 1 | -1/+5 |
* | style message about missing RCS ids; inspired by mdoclint | Ingo Schwarze | 2017-06-17 | 1 | -0/+18 |
* | Naive implementation of the roff(7) .po (page offset) request. | Ingo Schwarze | 2017-06-14 | 1 | -4/+4 |
* | simple implementation of the roff(7) .als (macro alias) request, | Ingo Schwarze | 2017-06-14 | 1 | -4/+35 |
* | implement the roff(7) d (macro or string defined) conditional | Ingo Schwarze | 2017-06-14 | 1 | -5/+11 |
* | implement roff(7) .rj (right justify) request | Ingo Schwarze | 2017-06-14 | 1 | -8/+8 |
* | Explicitly ignore .br, .ce, and .sp inside tbl(7) text blocks. | Ingo Schwarze | 2017-06-13 | 1 | -2/+3 |
* | Properly reinitialize roffce_node between parses, | Ingo Schwarze | 2017-06-08 | 1 | -0/+4 |
* | Implement the roff(7) .rn (rename macro or string) request. | Ingo Schwarze | 2017-06-07 | 1 | -5/+97 |
* | Minimal implementation of the roff(7) .ce request (center a number | Ingo Schwarze | 2017-06-06 | 1 | -9/+60 |
* | Implement the roff(7) .mc (right margin character) request. | Ingo Schwarze | 2017-06-04 | 1 | -4/+4 |
* | Pure preprocessor implementation of the roff(7) .ec and .eo requests | Ingo Schwarze | 2017-06-04 | 1 | -13/+99 |
* | Line-breaking roff(7) requests also break man(7) next-line scope. | Ingo Schwarze | 2017-05-08 | 1 | -1/+7 |
* | Basic implementation of the roff(7) .ti (temporary indent) request. | Ingo Schwarze | 2017-05-08 | 1 | -3/+3 |
* | Basic implementation of the roff(7) .ta (define tab stops) request. | Ingo Schwarze | 2017-05-07 | 1 | -3/+27 |
* | Move .sp to the roff modules. Enough infrastructure is in place | Ingo Schwarze | 2017-05-05 | 1 | -4/+6 |
* | move .ll to the roff modules | Ingo Schwarze | 2017-05-05 | 1 | -3/+4 |
* | Move handling of the roff(7) .ft request from the man(7) | Ingo Schwarze | 2017-05-05 | 1 | -2/+32 |
* | Parser reorg: | Ingo Schwarze | 2017-05-04 | 1 | -10/+21 |
* | Parser unification: use nice ohashes for all three request and macro tables; | Ingo Schwarze | 2017-04-29 | 1 | -303/+297 |
* | Continue parser unification: | Ingo Schwarze | 2017-04-24 | 1 | -280/+131 |
* | Fix blunder in previous: we must keep the line parse buffer | Ingo Schwarze | 2017-03-09 | 1 | -0/+2 |
* | prevent infinite recursion while expanding the arguments | Ingo Schwarze | 2017-03-08 | 1 | -2/+15 |
* | remove a few redundant conditions that jsg@ found with cppcheck | Ingo Schwarze | 2017-03-03 | 1 | -1/+1 |
* | Fix previous: do not access the byte before the string if the string | Ingo Schwarze | 2017-03-03 | 1 | -1/+1 |
* | Fix a read buffer overrun that copied random data from memory into | Ingo Schwarze | 2017-02-17 | 1 | -3/+11 |
* | Skipping all escape sequences at the beginning of strings in deroff() | Ingo Schwarze | 2017-01-12 | 1 | -8/+4 |
* | For the .Ux/.Ox family of macros, do text production at the validation | Ingo Schwarze | 2017-01-10 | 1 | -2/+6 |
* | simplify; NODE_ENDED does no harm in man(7) | Ingo Schwarze | 2017-01-10 | 1 | -8/+2 |
* | unify names of AST node flags; no change of cpp output | Ingo Schwarze | 2017-01-10 | 1 | -8/+8 |
* | Delete the redundant "nchild" member of struct roff_node, replacing | Ingo Schwarze | 2016-01-08 | 1 | -3/+0 |
* | move man(7) validation into the dedicated validation phase, too | Ingo Schwarze | 2015-10-22 | 1 | -2/+2 |
* | Move all mdoc(7) node validation done before child parsing | Ingo Schwarze | 2015-10-21 | 1 | -28/+12 |
* | In order to become able to generate syntax tree nodes on the roff(7) | Ingo Schwarze | 2015-10-20 | 1 | -3/+8 |
* | Delete two preprocessor constants that are no longer used. | Ingo Schwarze | 2015-10-15 | 1 | -3/+0 |
* | Major character table cleanup: | Ingo Schwarze | 2015-10-13 | 1 | -4/+2 |