aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/term.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* After skipping an escape sequence with incomplete arguments,Ingo Schwarze2014-07-061-3/+3
* Audit malloc(3)/calloc(3)/realloc(3) usage.Ingo Schwarze2014-04-231-2/+2
* KNF: case (FOO): -> case FOO:, remove /* LINTED */ and /* ARGSUSED */,Ingo Schwarze2014-04-201-60/+48
* Add a new term_flushln() flag TERMP_BRIND (if break, then indent)Ingo Schwarze2014-04-081-28/+21
* bugfix: make sure all variables are properly initializedIngo Schwarze2014-04-051-6/+6
* Support relative arguments to .ll (increase or decrease line length).Ingo Schwarze2014-03-301-1/+31
* The files mandoc.c and mandoc.h contained both specialised low-levelIngo Schwarze2014-03-231-2/+2
* In -Tutf8 mode, make sure that hyphens get counted against the output lineIngo Schwarze2014-03-131-7/+8
* Implement the \: (optional line break) escape sequence,Ingo Schwarze2014-01-221-4/+10
* remove assignments that will be overwritten right afterwards,Ingo Schwarze2013-12-311-2/+1
* Do not break output lines in .Fn function arguments in SYNOPSIS mode.Ingo Schwarze2013-12-251-2/+12
* Delete the unused flag TERMP_IGNDELIMIngo Schwarze2013-12-241-2/+2
* Implement a long-standing desideratum,Ingo Schwarze2013-12-231-4/+15
* Polishing the worms in my favourite can, term_flushln().Ingo Schwarze2013-12-221-8/+6
* Move the last column-counting members of struct termp (col and maxcols)Ingo Schwarze2013-08-211-19/+15
* Implement the roff(7) font-escape sequence \f(BI "bold+italic".Ingo Schwarze2013-08-081-29/+23
* After a leading blank on an output line, the first word was counted twiceIngo Schwarze2013-08-051-2/+2