aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/roff.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Major character table cleanup:Ingo Schwarze2015-10-131-5/+3
* To make the code more readable, delete 283 /* FALLTHROUGH */ commentsIngo Schwarze2015-10-121-25/+1
* modernize style: "return" is not a functionIngo Schwarze2015-10-061-129/+129
* /* NOTREACHED */ after abort() is silly, delete itIngo Schwarze2015-09-261-4/+3
* If we have to reparse the text line because we spring an input line trap,Ingo Schwarze2015-08-291-17/+18
* Implement the escape sequence \\$*, expanding to all argumentsIngo Schwarze2015-08-291-16/+27
* Minimal implementation of the read-only number register \n(.$Ingo Schwarze2015-08-291-9/+19
* Ignore blank characters at the beginning of a conditional block,Ingo Schwarze2015-06-271-1/+3
* Implement the roff(7) `r' (register exists) conditional.Ingo Schwarze2015-05-311-6/+32
* Setting the "last" member of struct roff_node was done at an extremelyIngo Schwarze2015-05-011-1/+2
* Unify mdoc_deroff() and man_deroff() into a common function deroff().Ingo Schwarze2015-04-231-1/+47
* Unify trickier node handling functions.Ingo Schwarze2015-04-191-1/+22
* Unify some node handling functions that use TOKEN_NONE.Ingo Schwarze2015-04-191-3/+62
* Unify node handling functions:Ingo Schwarze2015-04-191-7/+205
* Unify {mdoc,man}_{alloc,reset,free}() into roff_man_{alloc,reset,free}().Ingo Schwarze2015-04-181-2/+70
* Don't allow breaking the output line after hyphens following escapeIngo Schwarze2015-04-041-1/+3
* Escape quotes when expanding macro arguments.Ingo Schwarze2015-02-211-17/+77
* Cope with another one of the many kinds of DocBook stupidity:Ingo Schwarze2015-02-171-3/+12
* Let .it accept numerical expressions, not just numerical constants.Ingo Schwarze2015-02-171-37/+42
* replace the last legacy generic message type, "argument count wrong",Ingo Schwarze2015-02-061-5/+6
* correctly handle table layout lines starting with a dotIngo Schwarze2015-01-301-2/+2
* * Polish tbl(7) error reporting.Ingo Schwarze2015-01-281-4/+7
* For now, it can't be helped that mandoc tbl(7) ignores high-level macros,Ingo Schwarze2015-01-281-2/+8
* Strangely, ignoring the roff(7) .na request was implemented in the man(7)Ingo Schwarze2015-01-241-2/+3
* While ignoring the .ta (set tab stops) and .ti (temp indent) requestsIngo Schwarze2015-01-231-4/+4
* Wonders of roff(7): Integer numbers in numerical expressions can carryIngo Schwarze2015-01-231-3/+41
* Slightly improve \w width measurements:Ingo Schwarze2015-01-221-2/+20
* pass empty request lines through to tbl(7); sometimes, they end a layoutIngo Schwarze2015-01-211-11/+10
* Split the -Werror message level into -Werror (broken manual, probablyIngo Schwarze2015-01-201-19/+457
* Parse and ignore .IX (generate index entry) macros because pod2man(1)Ingo Schwarze2015-01-161-1/+3
* downgrade ".so with absolute path" from FATAL to ERROR;Ingo Schwarze2015-01-141-3/+8
* Bugfix: When the invocation of a user-defined macro follows a roffIngo Schwarze2015-01-071-1/+2
* Fix a buffer overrun triggered by a trailing backslash at EOF inIngo Schwarze2015-01-011-5/+7
* improve previous: do the size check up front to avoid leaking memoryIngo Schwarze2014-12-281-7/+5
* Reduce memory and time consumption on certain malformed input filesIngo Schwarze2014-12-251-1/+8
* Don't let the modulo operator divide by zero.Ingo Schwarze2014-12-181-2/+8
* Ignore mdoc(7) and man(7) macros inside tbl(7) code because theyIngo Schwarze2014-12-161-5/+20
* When a string comparison condition contains no mismatching characterIngo Schwarze2014-12-161-2/+2
* When a numerical condition errors out after consuming at least oneIngo Schwarze2014-12-161-3/+6
* Empty conditions count as false.Ingo Schwarze2014-12-151-1/+3
* Support the ".if v" conditional operator (vroff mode, always false)Ingo Schwarze2014-11-191-1/+3
* Use struct buf in libroff, it is very natural thereIngo Schwarze2014-11-011-167/+165
* Make the character table available to libroff so it can check theIngo Schwarze2014-10-281-3/+10
* With the current architecture, we can't support inline equationsIngo Schwarze2014-10-251-2/+3
* Report arguments to .EQ as an error, and simplify the code:Ingo Schwarze2014-10-251-21/+10