aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/term.c
Commit message (Expand)AuthorAgeFilesLines
* fix typo in TERMP_MULTICOL flag test;Ingo Schwarze2017-07-281-2/+2
* implement so-called absolute horizontal motion: \h'|...',Ingo Schwarze2017-06-141-2/+7
* let \l use the right fill characterIngo Schwarze2017-06-141-6/+6
* improve rounding rules for scaling unitsIngo Schwarze2017-06-141-4/+18
* implement the roff(7) \p (break output line) escape sequenceIngo Schwarze2017-06-141-1/+33
* Implement automatic line breakingIngo Schwarze2017-06-121-25/+40
* make the internal a2roffsu() interface more powerful by returningIngo Schwarze2017-06-081-14/+5
* Prepare the terminal driver for filling multiple columns in parallel,Ingo Schwarze2017-06-071-25/+40
* Prepare the terminal driver for filling multiple columns in parallel,Ingo Schwarze2017-06-071-67/+69
* The \h escape sequence provides another method for moving backwards,Ingo Schwarze2017-06-071-15/+28
* Implement the roff(7) .mc (right margin character) request.Ingo Schwarze2017-06-041-40/+61
* Make term_flushln() simpler and more robust:Ingo Schwarze2017-06-041-62/+25
* Partial implementation of \h (horizontal line drawing function).Ingo Schwarze2017-06-021-2/+58
* Minimal implementation of the \h (horizontal motion) escape sequence.Ingo Schwarze2017-06-011-1/+23
* Basic implementation of the roff(7) .ta (define tab stops) request.Ingo Schwarze2017-05-071-12/+15
* Fix an assertion failure caused by \z\[u00FF] with -Tps/-Tpdf.Ingo Schwarze2017-01-081-3/+15
* Fix assertion failures caused by whitespace inside \o'' (overstrike)Ingo Schwarze2016-08-101-4/+6
* sed 's/the the/the/' in a comment; from krw@Ingo Schwarze2016-04-121-2/+2
* This code wasted memory by allocating sizeof(enum termfont *)Ingo Schwarze2016-01-071-2/+2
* apply bold and italic to all non-ASCII Unicode codepoints,Ingo Schwarze2015-10-231-2/+2
* Major character table cleanup:Ingo Schwarze2015-10-131-8/+5
* To make the code more readable, delete 283 /* FALLTHROUGH */ commentsIngo Schwarze2015-10-121-5/+1
* modernize style: "return" is not a functionIngo Schwarze2015-10-061-7/+7
* /* NOTREACHED */ after abort() is silly, delete itIngo Schwarze2015-09-261-2/+1
* Trailing whitespace is significant when determining the width of a tagIngo Schwarze2015-09-211-1/+7
* Drop leading, internal, and trailing blank characters in \o (overstrike)Ingo Schwarze2015-08-301-2/+8
* Replace the kludge for the \z escape sequence by an actualIngo Schwarze2015-04-291-43/+27
* Rounding rules for horizontal scaling widths are more complicated.Ingo Schwarze2015-04-041-6/+6
* Third step towards parser unification:Ingo Schwarze2015-04-021-4/+4
* prevent the skipvsp flag from creeping past actual textIngo Schwarze2015-03-061-1/+2
* Use relative offsets instead of absolute pointers for the terminalIngo Schwarze2015-01-311-15/+7
* Rudimentary implementation of the roff(7) \o escape sequence (overstrike).Ingo Schwarze2015-01-211-2/+27
* Support negative indentations for mdoc(7) displays and lists.Ingo Schwarze2014-12-241-2/+2
* When a man(7) document contains unreasonably large numbers forIngo Schwarze2014-12-241-2/+4
* support negative horizontal widths in man(7);Ingo Schwarze2014-12-231-15/+9
* Fix vertical scaling. Obviously, nobody ever had a serious look at this.Ingo Schwarze2014-12-231-8/+19
* Enforcing an arbitrary, implementation dependent, undocumented limitIngo Schwarze2014-12-191-15/+19
* Fix the implementation and documentation of \c (continue text input line).Ingo Schwarze2014-12-021-3/+3
* We repeatedly observed assertion crashes in the low-level terminalIngo Schwarze2014-11-211-9/+13
* When a line (in the sense of term_flushln()) contains white space only,Ingo Schwarze2014-11-161-2/+4
* fix a typo causing crashes in Unicode string length measurementIngo Schwarze2014-11-011-2/+2
* In terminal output, unify handling of Unicode and numbered characterIngo Schwarze2014-10-291-39/+65
* In -Tascii mode, print "<?>" only for Unicode escapes of unknownIngo Schwarze2014-10-281-10/+4
* Make the character table available to libroff so it can check theIngo Schwarze2014-10-281-6/+2
* Fix a regression in term.c rev. 1.229 reported by bentley@:Ingo Schwarze2014-10-271-7/+5
* Improve -Tascii output for Unicode escape sequences: For the first 512Ingo Schwarze2014-10-261-54/+40
* Control reading off the edge of our buffer in term_flushln().Kristaps Dzonsons2014-08-181-2/+2
* Get rid of HAVE_CONFIG_H, it is always defined; idea from libnbcompat.Ingo Schwarze2014-08-101-3/+1
* Fix floating point handling: When converting double to size_t,Ingo Schwarze2014-08-011-3/+3
* Clarity with respect to floating point handling:Ingo Schwarze2014-08-011-7/+7