| Commit message (Expand) | Author | Age | Files | Lines |
* | Simplify by creating struct roff_node syntax tree nodes for tbl(7) | Ingo Schwarze | 2017-07-08 | 1 | -12/+7 |
* | Implement w layout specifier (minimum column width). | Ingo Schwarze | 2017-06-08 | 1 | -0/+1 |
* | modernize style: "return" is not a function | Ingo Schwarze | 2015-10-06 | 1 | -8/+8 |
* | Delete the redundant tbl span flags, just inspect the actual data | Ingo Schwarze | 2015-01-30 | 1 | -4/+0 |
* | Abolish struct tbl_head and replace it by an "int col" member in | Ingo Schwarze | 2015-01-30 | 1 | -6/+0 |
* | Auditing the tbl(7) code for more NULL pointer accesses, i came out | Ingo Schwarze | 2015-01-30 | 1 | -8/+7 |
* | * Polish tbl(7) error reporting. | Ingo Schwarze | 2015-01-28 | 1 | -14/+14 |
* | For now, it can't be helped that mandoc tbl(7) ignores high-level macros, | Ingo Schwarze | 2015-01-28 | 1 | -7/+7 |
* | Multiple parser and formatter fixes for line drawing in tbl(7). | Ingo Schwarze | 2015-01-27 | 1 | -1/+5 |
* | Improve (or rather, rewrite) tbl(7) option parsing. | Ingo Schwarze | 2015-01-26 | 1 | -17/+32 |
* | blank lines in tables do not need special handling; simplifies code | Ingo Schwarze | 2015-01-21 | 1 | -5/+2 |
* | simplify by getting rid of ROFF_ERR in tbl(7) parsing; no functional change | Ingo Schwarze | 2015-01-14 | 1 | -2/+4 |
* | Get rid of HAVE_CONFIG_H, it is always defined; idea from libnbcompat. | Ingo Schwarze | 2014-08-10 | 1 | -2/+2 |
* | KNF: case (FOO): -> case FOO:, remove /* LINTED */ and /* ARGSUSED */, | Ingo Schwarze | 2014-04-20 | 1 | -11/+11 |
* | The files mandoc.c and mandoc.h contained both specialised low-level | Ingo Schwarze | 2014-03-23 | 1 | -0/+1 |
* | More cleanup: Consistently use the name "struct tbl_node *tbl" | Ingo Schwarze | 2013-05-31 | 1 | -19/+19 |
* | Implement the first steps of equation parsing from within libmdoc. | Kristaps Dzonsons | 2011-07-25 | 1 | -1/+5 |
* | Add config.h Glue for OpenIndiana (and older OpenSolaris) to build. | Kristaps Dzonsons | 2011-04-04 | 1 | -0/+4 |
* | Step 1 of restructuring: libmandoc.h. Move all compiler-set-specific | Kristaps Dzonsons | 2011-03-22 | 1 | -1/+0 |
* | Consolidate messages. Have all parse-time messages (in libmdoc, | Kristaps Dzonsons | 2011-03-20 | 1 | -7/+10 |
* | Since tbl_data() can now produce multiple spans, let parsebuf() | Ingo Schwarze | 2011-01-25 | 1 | -3/+9 |
* | Support `T{' and `T}' data blocks. When a standalone `T{' is | Kristaps Dzonsons | 2011-01-04 | 1 | -1/+8 |
* | Make width calculations occur within tbl_term.c, not tbl.c. This allows | Kristaps Dzonsons | 2011-01-03 | 1 | -160/+0 |
* | Fix table to print nicely (merging error). Also have -Ttree push out some | Kristaps Dzonsons | 2011-01-02 | 1 | -5/+0 |
* | Add some final bits necessary in the upcoming -Tascii tbl stuff. | Kristaps Dzonsons | 2011-01-02 | 1 | -0/+3 |
* | Churn to get parts of 'struct tbl' visible from mandoc.h: rename the | Kristaps Dzonsons | 2011-01-02 | 1 | -18/+18 |
* | Merge in the width, decimal, and positioning code for individual data rows | Kristaps Dzonsons | 2011-01-01 | 1 | -0/+165 |
* | Plug in the "head" concept for tables. A tbl_head specifies the full | Kristaps Dzonsons | 2011-01-01 | 1 | -4/+8 |
* | Raise an error if a table is closed without data. | Kristaps Dzonsons | 2011-01-01 | 1 | -1/+7 |
* | Add documentation bits for libroff's new roff_span(). | Kristaps Dzonsons | 2011-01-01 | 1 | -1/+11 |
* | Switch on tbl rows being added to the parse stream. Here we go! | Kristaps Dzonsons | 2011-01-01 | 1 | -4/+4 |
* | Expose the parsed table API to the world and add accessors through the | Kristaps Dzonsons | 2010-12-31 | 1 | -0/+7 |
* | Put parsed tables into a queue that's cleared at the end of parsing. | Kristaps Dzonsons | 2010-12-31 | 1 | -59/+31 |
* | Move clean-up of parsed tbl nodes into the tbl_clear() function, called | Kristaps Dzonsons | 2010-12-30 | 1 | -19/+26 |
* | Initial check-in of table data-row processing. For the time being, this | Kristaps Dzonsons | 2010-12-29 | 1 | -1/+14 |
* | Add handling for `T&', which restarts a table except for its options. | Kristaps Dzonsons | 2010-12-29 | 1 | -0/+8 |
* | Merge, with considerable changes, tbl.bsd.lv's layout-handling code. | Kristaps Dzonsons | 2010-12-29 | 1 | -1/+17 |
* | Significant update to options handling, which now departs almost | Kristaps Dzonsons | 2010-12-29 | 1 | -62/+23 |
* | Fix copyright email. | Kristaps Dzonsons | 2010-12-28 | 1 | -1/+1 |
* | Adding initial options processing (not hooked into parse yet). This is | Kristaps Dzonsons | 2010-12-28 | 1 | -9/+60 |
* | Fixed enum rofferr return value in tbl_read() (oops). | Kristaps Dzonsons | 2010-12-28 | 1 | -1/+1 |
* | Initial tbl framework. Parse point is in libroff, which keeps a | Kristaps Dzonsons | 2010-12-28 | 1 | -0/+94 |