aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tbl_term.c
Commit message (Expand)AuthorAgeFilesLines
* Ignore explicitly specified negative column widths rather thanIngo Schwarze2017-07-311-2/+5
* Correctly handle horizontal spans at the beginning of rows,Ingo Schwarze2017-07-081-9/+10
* Implement spacing of columns as defined in the table layout;Ingo Schwarze2017-06-271-21/+28
* tables leak tab settings to subsequent textIngo Schwarze2017-06-171-1/+12
* Multiple tbl(7) improvements:Ingo Schwarze2017-06-161-63/+176
* improve rounding rules for scaling unitsIngo Schwarze2017-06-141-2/+2
* fix the interaction of the allbox option with spanned cells in the layoutIngo Schwarze2017-06-131-17/+32
* Two minor fixes for the "allbox" modifier:Ingo Schwarze2017-06-121-3/+6
* implement the tbl(7) "allbox" option;Ingo Schwarze2017-06-121-2/+8
* fix column width calculation for text block cellsIngo Schwarze2017-06-121-2/+2
* Implement automatic line breakingIngo Schwarze2017-06-121-57/+157
* Implement w layout specifier (minimum column width).Ingo Schwarze2017-06-081-3/+9
* Prepare the terminal driver for filling multiple columns in parallel,Ingo Schwarze2017-06-071-7/+7
* Implement the roff(7) .mc (right margin character) request.Ingo Schwarze2017-06-041-18/+9
* To make the code more readable, delete 283 /* FALLTHROUGH */ commentsIngo Schwarze2015-10-121-6/+1
* modernize style: "return" is not a functionIngo Schwarze2015-10-061-3/+3
* /* NOTREACHED */ after abort() is silly, delete itIngo Schwarze2015-09-261-2/+1
* Fix vertical spacing at the beginning of tables.Ingo Schwarze2015-03-061-4/+1
* Flush the line preceding a table before clearing the right margin,Ingo Schwarze2015-03-061-3/+4
* Use relative offsets instead of absolute pointers for the terminalIngo Schwarze2015-01-311-3/+3
* Delete the redundant tbl span flags, just inspect the actual dataIngo Schwarze2015-01-301-3/+3
* Abolish struct tbl_head and replace it by an "int col" member inIngo Schwarze2015-01-301-21/+16
* Auditing the tbl(7) code for more NULL pointer accesses, i came outIngo Schwarze2015-01-301-5/+3
* implement the tbl(7) "center" layout optionIngo Schwarze2015-01-281-3/+19
* Multiple parser and formatter fixes for line drawing in tbl(7).Ingo Schwarze2015-01-271-124/+97
* Prevent unsigned integer underflow when a number is too wideIngo Schwarze2014-12-241-4/+8
* even if a table has zero columns, do not segfault in the formatter;Ingo Schwarze2014-10-141-2/+2
* Rudimentary implementation of the e, x, and z table layout modifiersIngo Schwarze2014-10-141-2/+2
* implement font modifiers in table layoutsIngo Schwarze2014-10-131-3/+19
* Get rid of HAVE_CONFIG_H, it is always defined; idea from libnbcompat.Ingo Schwarze2014-08-101-3/+3
* KNF: case (FOO): -> case FOO:, remove /* LINTED */ and /* ARGSUSED */,Ingo Schwarze2014-04-201-33/+33
* Allow leading and trailing vertical lines,Ingo Schwarze2014-03-281-4/+6
* The name "struct tbl" was badly misleading for two reasons:Ingo Schwarze2013-05-311-17/+17
* Fix the vertical spacing around tbl(7) instances in man(7).Ingo Schwarze2012-05-271-3/+7
* Correct width of horizontal spans; relevant in case of centered orIngo Schwarze2012-05-271-4/+12
* Do not handle vertical lines as additional tbl(7) columns,Ingo Schwarze2012-05-271-60/+28
* Major rewrite of the horizontal spacing of tablesIngo Schwarze2011-09-201-96/+101
* Fix copyright email.Kristaps Dzonsons2011-07-171-2/+2
* correct horizontal spacing of data cellsIngo Schwarze2011-01-251-8/+11
* Add support for "^" vertical spanners. Unlike GNU tbl, raiseKristaps Dzonsons2011-01-111-1/+4
* Make dp->string always consist of a value.Kristaps Dzonsons2011-01-101-15/+13
* First, make extra data cells be thrown away. This makes "dp->layout"Kristaps Dzonsons2011-01-101-13/+26
* The numerical column type centres on the *last* decimal point.Kristaps Dzonsons2011-01-081-2/+2
* Give the "n" cell type knowledge of its spacing.Kristaps Dzonsons2011-01-081-4/+1
* Fixes: T} can be followed by a delimiter then more data. Make thisKristaps Dzonsons2011-01-071-12/+13
* Quiesce lint with some type handling. Does not change anything.Kristaps Dzonsons2011-01-071-9/+12
* Stuff tbl_calc() into out.c so that it can be shared by all output modesKristaps Dzonsons2011-01-051-249/+101
* Support `T{' and `T}' data blocks. When a standalone `T{' isKristaps Dzonsons2011-01-041-8/+6
* Have horizontal spanner not clobber pre-set width.Kristaps Dzonsons2011-01-041-2/+5
* Fix spacing for tables to use term_len(). Also make term.c properlyKristaps Dzonsons2011-01-041-10/+10