summaryrefslogtreecommitdiffstats
path: root/tbl_term.c
Commit message (Expand)AuthorAgeFilesLines
* Support two-character font names (BI, CW, CR, CB, CI)Ingo Schwarze2021-08-101-5/+19
* The GNU tbl(1) program contained in the groff package internallyIngo Schwarze2020-10-251-11/+0
* Fix a logic error:Ingo Schwarze2020-01-111-13/+12
* delete trailing whitespace and space-tab sequences; no code change;Ingo Schwarze2019-07-011-1/+1
* Do not access a NULL pointer if a table contains a horizontal lineIngo Schwarze2019-06-111-4/+10
* fix a NULL pointer access on empty tbl(7) data cellsIngo Schwarze2019-03-181-2/+4
* When drawing a horizontal line in tbl(7) UTF-8 output, it is notIngo Schwarze2019-03-161-12/+17
* The horizontal line in a data cell containing only "_" or "="Ingo Schwarze2019-02-091-47/+44
* Fix tbl(7) centering in mdoc(7) documents.Ingo Schwarze2019-01-311-3/+7
* Cleanup, no functional change:Ingo Schwarze2018-12-121-0/+1
* Do not draw horizontal lines through vertical spansIngo Schwarze2018-11-291-4/+18
* Now that it is better understood how borders work,Ingo Schwarze2018-11-291-71/+105
* additional check needed after the previous (box drawing) patchIngo Schwarze2018-11-281-4/+7
* In -T utf8 output mode, render tbl(7) borders with the UnicodeIngo Schwarze2018-11-281-150/+317
* In tbl(7) -T html output,Ingo Schwarze2018-11-251-17/+17
* Do alignment of non-numeric strings in numeric cells the same wayIngo Schwarze2018-08-191-25/+50
* do not print horizontal lines inside vertical spansIngo Schwarze2018-08-191-6/+20
* Do not allocate a column for decimal points if all numbers are integers.Ingo Schwarze2018-08-181-6/+4
* Ignore explicitly specified negative column widths rather thanIngo Schwarze2017-07-311-1/+4
* Correctly handle horizontal spans at the beginning of rows,Ingo Schwarze2017-07-081-8/+9
* Implement spacing of columns as defined in the table layout;Ingo Schwarze2017-06-271-20/+27
* tables leak tab settings to subsequent textIngo Schwarze2017-06-171-0/+11
* Multiple tbl(7) improvements:Ingo Schwarze2017-06-161-62/+175
* improve rounding rules for scaling unitsIngo Schwarze2017-06-141-1/+1
* fix the interaction of the allbox option with spanned cells in the layoutIngo Schwarze2017-06-131-16/+31
* Two minor fixes for the "allbox" modifier:Ingo Schwarze2017-06-121-2/+5
* implement the tbl(7) "allbox" option;Ingo Schwarze2017-06-121-1/+7
* fix column width calculation for text block cellsIngo Schwarze2017-06-121-1/+1
* Implement automatic line breakingIngo Schwarze2017-06-121-56/+156
* Implement w layout specifier (minimum column width).Ingo Schwarze2017-06-081-2/+8
* Prepare the terminal driver for filling multiple columns in parallel,Ingo Schwarze2017-06-071-6/+6
* Implement the roff(7) .mc (right margin character) request.Ingo Schwarze2017-06-041-17/+8
* To make the code more readable, delete 283 /* FALLTHROUGH */ commentsIngo Schwarze2015-10-121-5/+0
* modernize style: "return" is not a functionIngo Schwarze2015-10-061-2/+2
* /* NOTREACHED */ after abort() is silly, delete itIngo Schwarze2015-09-261-1/+0
* Fix vertical spacing at the beginning of tables.Ingo Schwarze2015-03-061-3/+0
* Flush the line preceding a table before clearing the right margin,Ingo Schwarze2015-03-061-2/+3
* Use relative offsets instead of absolute pointers for the terminalIngo Schwarze2015-01-311-2/+2
* Delete the redundant tbl span flags, just inspect the actual dataIngo Schwarze2015-01-301-2/+2
* Abolish struct tbl_head and replace it by an "int col" member inIngo Schwarze2015-01-301-20/+15
* Auditing the tbl(7) code for more NULL pointer accesses, i came outIngo Schwarze2015-01-301-4/+2
* implement the tbl(7) "center" layout optionIngo Schwarze2015-01-281-2/+18
* Multiple parser and formatter fixes for line drawing in tbl(7).Ingo Schwarze2015-01-271-123/+96
* Prevent unsigned integer underflow when a number is too wideIngo Schwarze2014-12-241-3/+7
* even if a table has zero columns, do not segfault in the formatter;Ingo Schwarze2014-10-141-1/+1
* Rudimentary implementation of the e, x, and z table layout modifiersIngo Schwarze2014-10-141-1/+1
* implement font modifiers in table layoutsIngo Schwarze2014-10-131-2/+18
* Get rid of HAVE_CONFIG_H, it is always defined; idea from libnbcompat.Ingo Schwarze2014-08-101-2/+2
* KNF: case (FOO): -> case FOO:, remove /* LINTED */ and /* ARGSUSED */,Ingo Schwarze2014-04-201-32/+32
* Allow leading and trailing vertical lines,Ingo Schwarze2014-03-281-3/+5