summaryrefslogtreecommitdiffstats
path: root/eqn.c
Commit message (Expand)AuthorAgeFilesLines
* Clean up eqn(7) error handling:Ingo Schwarze2015-01-281-51/+72
* Fix a NULL pointer dereference reportedIngo Schwarze2014-10-251-1/+3
* Report arguments to .EQ as an error, and simplify the code:Ingo Schwarze2014-10-251-16/+1
* Implement in-line equations, much needed by Xenocara manuals.Ingo Schwarze2014-10-161-0/+26
* bugfix: do not parse quoted strings for tokens; fixes glFrustum(3)Ingo Schwarze2014-10-121-0/+10
* Improve error handling in the eqn(7) parser.Ingo Schwarze2014-10-121-101/+83
* Drop trailing whitespace, adjust a few indentations,Ingo Schwarze2014-10-101-21/+20
* No need to assert() that a pointer is non-null right before dereferencing it.Ingo Schwarze2014-10-101-3/+0
* Ignore "delim" command.Kristaps Dzonsons2014-10-101-0/+1
* Re-write of eqn(7) parser and MathML output.Kristaps Dzonsons2014-10-101-611/+740
* Parse from/to clauses in eqn.Kristaps Dzonsons2014-09-281-1/+6
* Add support for EQNPOS_SUBSUP and a doubly-linked eqn_box list.Kristaps Dzonsons2014-09-281-5/+23
* Get rid of HAVE_CONFIG_H, it is always defined; idea from libnbcompat.Ingo Schwarze2014-08-101-2/+2
* Clean up messages related to plain text and to escape sequences.Ingo Schwarze2014-07-061-1/+1
* Clean up messages regarding excess arguments:Ingo Schwarze2014-07-041-1/+2
* Audit malloc(3)/calloc(3)/realloc(3) usage.Ingo Schwarze2014-04-231-2/+2
* make sure static buffers for snprintf(3) are large enoughIngo Schwarze2014-04-201-1/+1
* KNF: case (FOO): -> case FOO:, remove /* LINTED */ and /* ARGSUSED */,Ingo Schwarze2014-04-201-33/+30
* The files mandoc.c and mandoc.h contained both specialised low-levelIngo Schwarze2014-03-231-0/+1
* Implement the first steps of equation parsing from within libmdoc.Kristaps Dzonsons2011-07-251-4/+7
* Note GNU extensions in eqn.7. Also add `col' and `pile', which areKristaps Dzonsons2011-07-231-0/+2
* Add support for tdefine and ndefine. Consolidate some error messages. AddKristaps Dzonsons2011-07-231-23/+54
* Raise a warning when text follows the `EN'.Kristaps Dzonsons2011-07-231-1/+7
* Add `fat' font. This pretty much brings us in line with the secondKristaps Dzonsons2011-07-231-0/+1
* Ignore `back', `fwd', `up', `down', `mark', and `lineup'.Kristaps Dzonsons2011-07-231-3/+29
* Add matrix support. Also remove "above" notion, as all elements in aKristaps Dzonsons2011-07-231-1/+56
* The circumflex is also a special space character.Kristaps Dzonsons2011-07-231-1/+2
* Check for and throw away `gfont' eqn macros.Kristaps Dzonsons2011-07-221-1/+16
* Add support for `gsize' eqn token (introduced in second-edition troff).Kristaps Dzonsons2011-07-221-11/+31
* Add all rendered symbols used by eqn. I use the Second-Edition User'sKristaps Dzonsons2011-07-221-42/+87
* Support translating Greek characters in eqn.Kristaps Dzonsons2011-07-221-0/+94
* Fix left/right nesting in eqn.Kristaps Dzonsons2011-07-221-3/+7
* Protect macro expansion.Kristaps Dzonsons2011-07-221-1/+1
* Use a macro instead of doing a string-fragment compare. I just getKristaps Dzonsons2011-07-221-28/+23
* Give lists their own eqn function.Kristaps Dzonsons2011-07-221-35/+50
* Accomodate for hard-spaces with tildes. For now, consider them regularKristaps Dzonsons2011-07-221-4/+16
* Fix eqn handling of PILE clauses (multiple ABOVE statements may beKristaps Dzonsons2011-07-211-17/+14
* Complete eqn.7 parsing. Features all productions from the original 1975Kristaps Dzonsons2011-07-211-116/+231
* Support `size' constructs in eqn.7. Generalise mandoc_strontou to thisKristaps Dzonsons2011-07-211-2/+12
* Full support for eqn positionals (above, over, sup, sub, etc.).Kristaps Dzonsons2011-07-211-2/+21
* Add eqn subexpression fonts.Kristaps Dzonsons2011-07-211-12/+31
* Add support for markers. These decorate the last box: see eqn.7.Kristaps Dzonsons2011-07-211-5/+33
* Support nested `{, }' subexpressions in eqn. Document in code.Kristaps Dzonsons2011-07-211-10/+49
* Make `undef' not expand its argument before undefining it. DocumentKristaps Dzonsons2011-07-211-15/+21
* Flip eqn into using parsed nodes. I've temporarily disabled printingKristaps Dzonsons2011-07-211-31/+64
* Finish the eqn syntactic parser. This correctly parses terms and doesKristaps Dzonsons2011-07-211-184/+180
* Definitions in eqn.7 are actually recursive. Do this and add crudeKristaps Dzonsons2011-07-181-7/+29
* Fix lost allocation.Kristaps Dzonsons2011-07-171-2/+0
* Remember to NULL-ify new keys/vals.Kristaps Dzonsons2011-07-171-0/+1
* Provide implementations of `define', `set', and `unset'.Kristaps Dzonsons2011-07-171-55/+196