summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/roff.c
AgeCommit message (Expand)Author
2017-05-05Move .sp to the roff modules. Enough infrastructure is in placeIngo Schwarze
2017-05-05move .ll to the roff modulesIngo Schwarze
2017-05-05Move handling of the roff(7) .ft request from the man(7)Ingo Schwarze
2017-05-04Parser reorg:Ingo Schwarze
2017-04-29Parser unification: use nice ohashes for all three request and macro tables;Ingo Schwarze
2017-04-24Continue parser unification:Ingo Schwarze
2017-03-09Fix blunder in previous: we must keep the line parse bufferIngo Schwarze
2017-03-08prevent infinite recursion while expanding the argumentsIngo Schwarze
2017-03-03remove a few redundant conditions that jsg@ found with cppcheckIngo Schwarze
2017-03-03Fix previous: do not access the byte before the string if the stringIngo Schwarze
2017-02-17Fix a read buffer overrun that copied random data from memory intoIngo Schwarze
2017-01-12Skipping all escape sequences at the beginning of strings in deroff()Ingo Schwarze
2017-01-10For the .Ux/.Ox family of macros, do text production at the validationIngo Schwarze
2017-01-10simplify; NODE_ENDED does no harm in man(7)Ingo Schwarze
2017-01-10unify names of AST node flags; no change of cpp outputIngo Schwarze
2016-01-08Delete the redundant "nchild" member of struct roff_node, replacingIngo Schwarze
2015-10-22move man(7) validation into the dedicated validation phase, tooIngo Schwarze
2015-10-21Move all mdoc(7) node validation done before child parsingIngo Schwarze
2015-10-20In order to become able to generate syntax tree nodes on the roff(7)Ingo Schwarze
2015-10-15Delete two preprocessor constants that are no longer used.Ingo Schwarze
2015-10-13Major character table cleanup:Ingo Schwarze
2015-10-12To make the code more readable, delete 283 /* FALLTHROUGH */ commentsIngo Schwarze
2015-10-06modernize style: "return" is not a function; ok cmp(1)Ingo Schwarze
2015-09-26/* NOTREACHED */ after abort() is silly, delete itIngo Schwarze
2015-08-29If we have to reparse the text line because we spring an input line trap,Ingo Schwarze
2015-08-29Implement the escape sequence \\$*, expanding to all argumentsIngo Schwarze
2015-08-29Minimal implementation of the read-only number register \n(.$Ingo Schwarze
2015-06-27Ignore blank characters at the beginning of a conditional block,Ingo Schwarze
2015-05-31Implement the roff(7) `r' (register exists) conditional.Ingo Schwarze
2015-05-01Setting the "last" member of struct roff_node was done at an extremelyIngo Schwarze
2015-04-23Unify mdoc_deroff() and man_deroff() into a common function deroff().Ingo Schwarze
2015-04-19Unify trickier node handling functions.Ingo Schwarze
2015-04-19Unify some node handling functions that use TOKEN_NONE.Ingo Schwarze
2015-04-19Unify node handling functions:Ingo Schwarze
2015-04-18Unify {mdoc,man}_{alloc,reset,free}() into roff_man_{alloc,reset,free}().Ingo Schwarze
2015-04-04Don't allow breaking the output line after hyphens following escapeIngo Schwarze
2015-02-21Escape quotes when expanding macro arguments.Ingo Schwarze
2015-02-17Cope with another one of the many kinds of DocBook stupidity:Ingo Schwarze
2015-02-17Let .it accept numerical expressions, not just numerical constants.Ingo Schwarze
2015-02-06replace the last legacy generic message type, "argument count wrong",Ingo Schwarze
2015-01-30correctly handle table layout lines starting with a dotIngo Schwarze
2015-01-28* Polish tbl(7) error reporting.Ingo Schwarze
2015-01-28For now, it can't be helped that mandoc tbl(7) ignores high-level macros,Ingo Schwarze
2015-01-24Strangely, ignoring the roff(7) .na request was implemented in the man(7)Ingo Schwarze
2015-01-23While ignoring the .ta (set tab stops) and .ti (temp indent) requestsIngo Schwarze
2015-01-23Wonders of roff(7): Integer numbers in numerical expressions can carryIngo Schwarze
2015-01-22Slightly improve \w width measurements:Ingo Schwarze
2015-01-21pass empty request lines through to tbl(7); sometimes, they end a layoutIngo Schwarze
2015-01-20Split the -Werror message level into -Werror (broken manual, probablyIngo Schwarze
2015-01-16Parse and ignore .IX (generate index entry) macros because pod2man(1)Ingo Schwarze