summaryrefslogtreecommitdiffstats
path: root/usr.bin/mandoc/tbl_term.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Do not access a NULL pointer if a table contains a horizontal lineschwarze2019-06-111-5/+11
* fix a NULL pointer access on empty tbl(7) data cellsschwarze2019-03-181-3/+5
* When drawing a horizontal line in tbl(7) UTF-8 output, it is notschwarze2019-03-161-13/+18
* The horizontal line in a data cell containing only "_" or "="schwarze2019-02-091-48/+45
* Fix tbl(7) centering in mdoc(7) documents.schwarze2019-01-311-4/+8
* Cleanup, no functional change:schwarze2018-12-121-1/+2
* Do not draw horizontal lines through vertical spansschwarze2018-11-291-5/+19
* Now that it is better understood how borders work,schwarze2018-11-291-72/+106
* additional check needed after the previous (box drawing) patchschwarze2018-11-281-5/+8
* In -T utf8 output mode, render tbl(7) borders with the Unicodeschwarze2018-11-281-151/+318
* In tbl(7) -T html output,schwarze2018-11-251-18/+18
* Do alignment of non-numeric strings in numeric cells the same wayschwarze2018-08-191-26/+51
* do not print horizontal lines inside vertical spansschwarze2018-08-191-7/+21
* Do not allocate a column for decimal points if all numbers are integers.schwarze2018-08-181-7/+5
* Ignore explicitly specified negative column widths rather thanschwarze2017-07-311-2/+5
* Correctly handle horizontal spans at the beginning of rows,schwarze2017-07-081-9/+10
* Implement spacing of columns as defined in the table layout;schwarze2017-06-271-21/+28
* tables leak tab settings to subsequent textschwarze2017-06-171-1/+12
* Multiple tbl(7) improvements:schwarze2017-06-161-63/+176
* improve rounding rules for scaling unitsschwarze2017-06-141-2/+2
* fix the interaction of the allbox option with spanned cells in the layoutschwarze2017-06-131-17/+32
* Two minor fixes for the "allbox" modifier:schwarze2017-06-121-3/+6
* implement the tbl(7) "allbox" option;schwarze2017-06-121-2/+8
* fix column width calculation for text block cellsschwarze2017-06-121-2/+2
* Implement automatic line breakingschwarze2017-06-121-57/+157
* Implement w layout specifier (minimum column width).schwarze2017-06-081-3/+9
* Prepare the terminal driver for filling multiple columns in parallel,schwarze2017-06-071-7/+7
* Implement the roff(7) .mc (right margin character) request.schwarze2017-06-041-18/+9
* To make the code more readable, delete 283 /* FALLTHROUGH */ commentsschwarze2015-10-121-6/+1
* modernize style: "return" is not a function; ok cmp(1)schwarze2015-10-061-3/+3
* /* NOTREACHED */ after abort() is silly, delete itschwarze2015-09-261-2/+1
* Fix vertical spacing at the beginning of tables.schwarze2015-03-091-4/+1
* Flush the line preceding a table before clearing the right margin,schwarze2015-03-091-3/+4
* Use relative offsets instead of absolute pointers for the terminalschwarze2015-01-311-3/+3
* Delete the redundant tbl span flags, just inspect the actual dataschwarze2015-01-301-3/+3
* Abolish struct tbl_head and replace it by an "int col" member inschwarze2015-01-301-21/+16
* Auditing the tbl(7) code for more NULL pointer accesses, i came outschwarze2015-01-301-5/+3
* implement the tbl(7) "center" layout optionschwarze2015-01-281-3/+19
* Multiple parser and formatter fixes for line drawing in tbl(7).schwarze2015-01-271-124/+97
* Prevent unsigned integer underflow when a number is too wideschwarze2014-12-241-4/+8
* even if a table has zero columns, do not segfault in the formatter;schwarze2014-10-141-2/+2
* Rudimentary implementation of the e, x, and z table layout modifiersschwarze2014-10-141-2/+2
* implement font modifiers in table layoutsschwarze2014-10-131-3/+21
* KNF: case (FOO): -> case FOO, remove /* LINTED */ and /* ARGSUSED */,schwarze2014-04-201-33/+33
* Allow leading and trailing vertical lines,schwarze2014-03-281-4/+6
* The name "struct tbl" was badly misleading for two reasons:schwarze2013-05-311-17/+17
* Fix the vertical spacing around tbl(7) instances in man(7).schwarze2012-05-271-3/+7
* Correct width of horizontal spans; relevant in case of centered orschwarze2012-05-261-4/+12
* Do not handle vertical lines as additional tbl(7) columns,schwarze2012-05-261-60/+28
* Major rewrite of the horizontal spacing of tablesschwarze2011-09-201-96/+101