aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/term.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* In keep mode, if any text is printed (even in NOSPACE mode),Ingo Schwarze2013-05-291-3/+3
* Improve formatting of badly nested font blocks.Ingo Schwarze2012-11-161-2/+2
* In flush-left mode of both man(7) and mdoc(7), when an output line is brokenIngo Schwarze2012-07-161-1/+9
* Remove a hack that was intended for groff-1.15 bug compatibility:Ingo Schwarze2012-07-101-7/+2
* Implement the roff \z escape sequence, intended to output the nextIngo Schwarze2012-05-311-14/+54
* Fix the vertical spacing around tbl(7) instances in man(7).Ingo Schwarze2012-05-271-3/+6
* As noticed by kristaps@, when breaking an overflowing line,Ingo Schwarze2011-09-211-6/+4
* Remove the terminal frontend flag TERMP_NOLPAD.Ingo Schwarze2011-09-191-34/+25
* fix a regression introduced in 1.11.7:Ingo Schwarze2011-09-181-2/+5
* forgotten Copyright bumps; no code changeIngo Schwarze2011-09-181-2/+2
* Remove all references to ESCAPE_PREDEF, which is now not exposed passedKristaps Dzonsons2011-05-241-23/+1
* Allow non-ASCII terminal encodings to accept unicode values for theKristaps Dzonsons2011-05-201-18/+62
* Make any un-recognised font be considered a call for the Roman font.Kristaps Dzonsons2011-05-181-1/+3
* Locale support. I'm checking this in to clean up fall-out in-tree, butKristaps Dzonsons2011-05-171-7/+46
* Add mode for -Tlocale. This mode, with this commit, behaves exactlyKristaps Dzonsons2011-05-171-13/+1
* Flip on printing `?' at Unicode codepoints in -Tascii, -Tpdf, and -Tps.Kristaps Dzonsons2011-05-171-2/+10
* Remove function calls to res() and so forth in term_word(). These wereKristaps Dzonsons2011-05-151-53/+16
* Fix missing support for \N'n' when calculating string widths in -TasciiKristaps Dzonsons2011-05-151-3/+8
* Use strcspn() in term_strlen(). Clarifies the code.Kristaps Dzonsons2011-05-151-11/+11
* Make some values "int" that were "size_t". These are primarily used forKristaps Dzonsons2011-05-141-23/+27
* Make character engine (-Tascii, -Tpdf, -Tps) ready for Unicode: make bufferKristaps Dzonsons2011-05-141-4/+4
* Make mchars_num2char() return a char like it says.Kristaps Dzonsons2011-04-301-5/+4
* Move "chars" interface out of out.h and into mandoc.h. This doesn'tKristaps Dzonsons2011-04-291-7/+7
* Remove a2roffdeco() and mandoc_special() functions and replace them withKristaps Dzonsons2011-04-091-49/+60
* Remove an unused variable (caught in lint-check)Kristaps Dzonsons2011-04-041-4/+2
* Move mandoc_isdelim() back into libmdoc.h. This fixes an unreportedKristaps Dzonsons2011-03-221-8/+1
* Step 4: merge chars.h into out.h. The functions in this file areKristaps Dzonsons2011-03-221-2/+1
* Move mdoc_isdelim() into mandoc.h as mandoc_isdelim(). This allows theKristaps Dzonsons2011-03-171-38/+6
* Move mandoc_{realloc,malloc,calloc} out of libmandoc.h and into mandoc.hKristaps Dzonsons2011-03-171-12/+3
* Make lint shut up a little bit.Kristaps Dzonsons2011-03-151-2/+2
* Implement the \N'number' (numbered character) roff escape sequence.Ingo Schwarze2011-01-301-2/+16
* Fix spacing for tables to use term_len(). Also make term.c properlyKristaps Dzonsons2011-01-041-1/+7
* Track down a bug of empty `de XX' macros causing uncertain behaviour byKristaps Dzonsons2010-12-061-2/+2
* style cleanup, no functional change:Ingo Schwarze2010-10-021-23/+15
* * need a space before .No even if it starts with a closing delimiterIngo Schwarze2010-10-011-2/+2
* Count trailing escaped blanks correctly;Ingo Schwarze2010-09-231-3/+5
* Allow string lengths to account for escapes. Now all calls to calculateKristaps Dzonsons2010-09-151-7/+43
* Churny commit to quiet lint. No functional changes.Kristaps Dzonsons2010-09-041-3/+3
* Centralize handling of literal tabs in term_flushln() in one place,Ingo Schwarze2010-08-201-11/+4
* When a column contains trailing spaces, calculate the paddingIngo Schwarze2010-08-201-1/+7
* Implement a simple, consistent user interface for error handling.Ingo Schwarze2010-08-201-3/+3
* Make `Sm' start no-spacing after the first output word. Fix in bothKristaps Dzonsons2010-07-261-1/+3
* Clean up some tight spots in mandoc's default mode: pessimisticallyKristaps Dzonsons2010-07-261-20/+15
* Avoid running the "width" termp callback for each whitespace.Kristaps Dzonsons2010-07-251-4/+4
* Accomodate for groff's crappy behaviour wherein an unrecognisedKristaps Dzonsons2010-07-211-4/+9
* Avoid letter-by-letter encoding by using strcspn() in term_word().Kristaps Dzonsons2010-07-171-8/+7
* Change chars.in HTML encoding to be a Unicode codepoint (int), which isKristaps Dzonsons2010-07-161-3/+3