summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/roff.c
AgeCommit message (Expand)Author
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
2015-01-14downgrade ".so with absolute path" from FATAL to ERROR;Ingo Schwarze
2015-01-07Bugfix: When the invocation of a user-defined macro follows a roffIngo Schwarze
2015-01-01Fix a buffer overrun triggered by a trailing backslash at EOF inIngo Schwarze
2014-12-28improve previous: do the size check up front to avoid leaking memoryIngo Schwarze
2014-12-25Reduce memory and time consumption on certain malformed input filesIngo Schwarze
2014-12-18Don't let the modulo operator divide by zero.Ingo Schwarze
2014-12-16Ignore mdoc(7) and man(7) macros inside tbl(7) code because theyIngo Schwarze
2014-12-16When a string comparison condition contains no mismatching characterIngo Schwarze
2014-12-16When a numerical condition errors out after consuming at least oneIngo Schwarze
2014-12-15Empty conditions count as false.Ingo Schwarze
2014-11-19Support the ".if v" conditional operator (vroff mode, always false)Ingo Schwarze
2014-11-01Use struct buf in libroff, it is very natural thereIngo Schwarze
2014-10-28Make the character table available to libroff so it can check theIngo Schwarze
2014-10-25With the current architecture, we can't support inline equationsIngo Schwarze
2014-10-25Report arguments to .EQ as an error, and simplify the code:Ingo Schwarze
2014-10-20protect the roff parser from dividing by zero;Ingo Schwarze