aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tbl_term.c
Commit message (Expand)AuthorAgeFilesLines
* Support two-character font names (BI, CW, CR, CB, CI)Ingo Schwarze2021-08-101-6/+20
* The GNU tbl(1) program contained in the groff package internallyIngo Schwarze2020-10-251-12/+1
* Fix a logic error:Ingo Schwarze2020-01-111-14/+13
* delete trailing whitespace and space-tab sequences; no code change;Ingo Schwarze2019-07-011-2/+2
* Do not access a NULL pointer if a table contains a horizontal lineIngo Schwarze2019-06-111-5/+11
* fix a NULL pointer access on empty tbl(7) data cellsIngo Schwarze2019-03-181-3/+5
* When drawing a horizontal line in tbl(7) UTF-8 output, it is notIngo Schwarze2019-03-161-13/+18
* The horizontal line in a data cell containing only "_" or "="Ingo Schwarze2019-02-091-48/+45
* Fix tbl(7) centering in mdoc(7) documents.Ingo Schwarze2019-01-311-4/+8
* Cleanup, no functional change:Ingo Schwarze2018-12-121-1/+2
* Do not draw horizontal lines through vertical spansIngo Schwarze2018-11-291-5/+19
* Now that it is better understood how borders work,Ingo Schwarze2018-11-291-72/+106
* additional check needed after the previous (box drawing) patchIngo Schwarze2018-11-281-5/+8
* In -T utf8 output mode, render tbl(7) borders with the UnicodeIngo Schwarze2018-11-281-151/+318
* In tbl(7) -T html output,Ingo Schwarze2018-11-251-18/+18
* Do alignment of non-numeric strings in numeric cells the same wayIngo Schwarze2018-08-191-26/+51
* do not print horizontal lines inside vertical spansIngo Schwarze2018-08-191-7/+21
* Do not allocate a column for decimal points if all numbers are integers.Ingo Schwarze2018-08-181-7/+5
* 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