aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/roff.c
Commit message (Expand)AuthorAgeFilesLines
* After rewriting the parse buffer from scratch, we also have to resetIngo Schwarze2018-08-011-1/+4
* preserve comments before .Dd when converting mdoc(7) to man(7)Ingo Schwarze2018-04-111-7/+30
* Two new low-level roff(7) features:Ingo Schwarze2018-04-101-15/+44
* When accessing an undefined number register, define it to be zero, likeIngo Schwarze2018-04-091-24/+20
* Using an undefined string or macro will cause it to be defined as empty.Ingo Schwarze2018-04-091-43/+82
* The .Dd and .TH macros must interrupt .ce, too;Ingo Schwarze2017-07-141-2/+3
* Explicitly initialize a variable where the compiler is (understandably)Ingo Schwarze2017-07-141-6/+7
* eqn(7) .EQ has to break man(7) next-line scope, or tree corruptionIngo Schwarze2017-07-131-1/+3
* Simplify by creating struct roff_node syntax tree nodes for tbl(7)Ingo Schwarze2017-07-081-37/+37
* fix an assertion failure triggered by .ce in next-line scope;Ingo Schwarze2017-07-081-2/+3
* 1. Eliminate struct eqn, instead use the existing membersIngo Schwarze2017-07-081-48/+38
* Fix handling of \} on roff request lines.Ingo Schwarze2017-07-041-16/+22
* add support for the MT and ME mailto macros, used for example in wg(8);Ingo Schwarze2017-06-251-2/+2
* Split -Wstyle into -Wstyle and the even lower -Wbase, and addIngo Schwarze2017-06-241-6/+6
* Implement appending to standard man(7) and mdoc(7) macros with .am.Ingo Schwarze2017-06-181-136/+186
* style message about duplicate RCS ids; inspired by mdoclintIngo Schwarze2017-06-171-2/+6
* style message about missing RCS ids; inspired by mdoclintIngo Schwarze2017-06-171-1/+19
* Naive implementation of the roff(7) .po (page offset) request.Ingo Schwarze2017-06-141-5/+5
* simple implementation of the roff(7) .als (macro alias) request,Ingo Schwarze2017-06-141-5/+36
* implement the roff(7) d (macro or string defined) conditionalIngo Schwarze2017-06-141-6/+12
* implement roff(7) .rj (right justify) requestIngo Schwarze2017-06-141-9/+9
* Explicitly ignore .br, .ce, and .sp inside tbl(7) text blocks.Ingo Schwarze2017-06-131-3/+4
* Properly reinitialize roffce_node between parses,Ingo Schwarze2017-06-081-1/+5
* Implement the roff(7) .rn (rename macro or string) request.Ingo Schwarze2017-06-071-6/+98
* Minimal implementation of the roff(7) .ce request (center a numberIngo Schwarze2017-06-061-10/+61
* Implement the roff(7) .mc (right margin character) request.Ingo Schwarze2017-06-041-5/+5
* Pure preprocessor implementation of the roff(7) .ec and .eo requestsIngo Schwarze2017-06-041-14/+100
* Line-breaking roff(7) requests also break man(7) next-line scope.Ingo Schwarze2017-05-081-2/+8
* Basic implementation of the roff(7) .ti (temporary indent) request.Ingo Schwarze2017-05-081-4/+4
* Basic implementation of the roff(7) .ta (define tab stops) request.Ingo Schwarze2017-05-071-4/+28
* Move .sp to the roff modules. Enough infrastructure is in placeIngo Schwarze2017-05-051-5/+7
* move .ll to the roff modulesIngo Schwarze2017-05-051-4/+5
* Move handling of the roff(7) .ft request from the man(7)Ingo Schwarze2017-05-051-3/+33
* Parser reorg:Ingo Schwarze2017-05-041-11/+22
* Parser unification: use nice ohashes for all three request and macro tables;Ingo Schwarze2017-04-291-304/+298
* Continue parser unification:Ingo Schwarze2017-04-241-281/+132
* Fix blunder in previous: we must keep the line parse bufferIngo Schwarze2017-03-091-1/+3
* prevent infinite recursion while expanding the argumentsIngo Schwarze2017-03-081-3/+16
* remove a few redundant conditions that jsg@ found with cppcheckIngo Schwarze2017-03-031-2/+2
* Fix previous: do not access the byte before the string if the stringIngo Schwarze2017-03-031-2/+2
* Fix a read buffer overrun that copied random data from memory intoIngo Schwarze2017-02-171-4/+12
* Skipping all escape sequences at the beginning of strings in deroff()Ingo Schwarze2017-01-121-9/+5
* For the .Ux/.Ox family of macros, do text production at the validationIngo Schwarze2017-01-101-3/+7
* simplify; NODE_ENDED does no harm in man(7)Ingo Schwarze2017-01-101-9/+3
* unify names of AST node flags; no change of cpp outputIngo Schwarze2017-01-101-9/+9
* Delete the redundant "nchild" member of struct roff_node, replacingIngo Schwarze2016-01-081-4/+1
* move man(7) validation into the dedicated validation phase, tooIngo Schwarze2015-10-221-3/+3
* Move all mdoc(7) node validation done before child parsingIngo Schwarze2015-10-211-29/+13
* In order to become able to generate syntax tree nodes on the roff(7)Ingo Schwarze2015-10-201-4/+9
* Delete two preprocessor constants that are no longer used.Ingo Schwarze2015-10-151-4/+1