summaryrefslogtreecommitdiffstats
path: root/roff.c
Commit message (Expand)AuthorAgeFilesLines
* The .Dd and .TH macros must interrupt .ce, too;Ingo Schwarze2017-07-141-1/+2
* Explicitly initialize a variable where the compiler is (understandably)Ingo Schwarze2017-07-141-5/+6
* eqn(7) .EQ has to break man(7) next-line scope, or tree corruptionIngo Schwarze2017-07-131-0/+2
* Simplify by creating struct roff_node syntax tree nodes for tbl(7)Ingo Schwarze2017-07-081-36/+36
* fix an assertion failure triggered by .ce in next-line scope;Ingo Schwarze2017-07-081-1/+2
* 1. Eliminate struct eqn, instead use the existing membersIngo Schwarze2017-07-081-47/+37
* Fix handling of \} on roff request lines.Ingo Schwarze2017-07-041-15/+21
* add support for the MT and ME mailto macros, used for example in wg(8);Ingo Schwarze2017-06-251-1/+1
* Split -Wstyle into -Wstyle and the even lower -Wbase, and addIngo Schwarze2017-06-241-5/+5
* Implement appending to standard man(7) and mdoc(7) macros with .am.Ingo Schwarze2017-06-181-135/+185
* style message about duplicate RCS ids; inspired by mdoclintIngo Schwarze2017-06-171-1/+5
* style message about missing RCS ids; inspired by mdoclintIngo Schwarze2017-06-171-0/+18
* Naive implementation of the roff(7) .po (page offset) request.Ingo Schwarze2017-06-141-4/+4
* simple implementation of the roff(7) .als (macro alias) request,Ingo Schwarze2017-06-141-4/+35
* implement the roff(7) d (macro or string defined) conditionalIngo Schwarze2017-06-141-5/+11
* implement roff(7) .rj (right justify) requestIngo Schwarze2017-06-141-8/+8
* Explicitly ignore .br, .ce, and .sp inside tbl(7) text blocks.Ingo Schwarze2017-06-131-2/+3
* Properly reinitialize roffce_node between parses,Ingo Schwarze2017-06-081-0/+4
* Implement the roff(7) .rn (rename macro or string) request.Ingo Schwarze2017-06-071-5/+97
* Minimal implementation of the roff(7) .ce request (center a numberIngo Schwarze2017-06-061-9/+60
* Implement the roff(7) .mc (right margin character) request.Ingo Schwarze2017-06-041-4/+4
* Pure preprocessor implementation of the roff(7) .ec and .eo requestsIngo Schwarze2017-06-041-13/+99
* Line-breaking roff(7) requests also break man(7) next-line scope.Ingo Schwarze2017-05-081-1/+7
* Basic implementation of the roff(7) .ti (temporary indent) request.Ingo Schwarze2017-05-081-3/+3
* Basic implementation of the roff(7) .ta (define tab stops) request.Ingo Schwarze2017-05-071-3/+27
* Move .sp to the roff modules. Enough infrastructure is in placeIngo Schwarze2017-05-051-4/+6
* move .ll to the roff modulesIngo Schwarze2017-05-051-3/+4
* Move handling of the roff(7) .ft request from the man(7)Ingo Schwarze2017-05-051-2/+32
* Parser reorg:Ingo Schwarze2017-05-041-10/+21
* Parser unification: use nice ohashes for all three request and macro tables;Ingo Schwarze2017-04-291-303/+297
* Continue parser unification:Ingo Schwarze2017-04-241-280/+131
* Fix blunder in previous: we must keep the line parse bufferIngo Schwarze2017-03-091-0/+2
* prevent infinite recursion while expanding the argumentsIngo Schwarze2017-03-081-2/+15
* remove a few redundant conditions that jsg@ found with cppcheckIngo Schwarze2017-03-031-1/+1
* Fix previous: do not access the byte before the string if the stringIngo Schwarze2017-03-031-1/+1
* Fix a read buffer overrun that copied random data from memory intoIngo Schwarze2017-02-171-3/+11
* Skipping all escape sequences at the beginning of strings in deroff()Ingo Schwarze2017-01-121-8/+4
* For the .Ux/.Ox family of macros, do text production at the validationIngo Schwarze2017-01-101-2/+6
* simplify; NODE_ENDED does no harm in man(7)Ingo Schwarze2017-01-101-8/+2
* unify names of AST node flags; no change of cpp outputIngo Schwarze2017-01-101-8/+8
* Delete the redundant "nchild" member of struct roff_node, replacingIngo Schwarze2016-01-081-3/+0
* move man(7) validation into the dedicated validation phase, tooIngo Schwarze2015-10-221-2/+2
* Move all mdoc(7) node validation done before child parsingIngo Schwarze2015-10-211-28/+12
* In order to become able to generate syntax tree nodes on the roff(7)Ingo Schwarze2015-10-201-3/+8
* Delete two preprocessor constants that are no longer used.Ingo Schwarze2015-10-151-3/+0
* Major character table cleanup:Ingo Schwarze2015-10-131-4/+2
* To make the code more readable, delete 283 /* FALLTHROUGH */ commentsIngo Schwarze2015-10-121-24/+0
* modernize style: "return" is not a functionIngo Schwarze2015-10-061-128/+128
* /* NOTREACHED */ after abort() is silly, delete itIngo Schwarze2015-09-261-3/+2
* If we have to reparse the text line because we spring an input line trap,Ingo Schwarze2015-08-291-16/+17