summaryrefslogtreecommitdiffstats
path: root/term.c
Commit message (Expand)AuthorAgeFilesLines
* The files mandoc.c and mandoc.h contained both specialised low-levelIngo Schwarze2014-03-231-1/+1
* In -Tutf8 mode, make sure that hyphens get counted against the output lineIngo Schwarze2014-03-131-6/+7
* Implement the \: (optional line break) escape sequence,Ingo Schwarze2014-01-221-3/+9
* remove assignments that will be overwritten right afterwards,Ingo Schwarze2013-12-311-1/+0
* Do not break output lines in .Fn function arguments in SYNOPSIS mode.Ingo Schwarze2013-12-251-1/+11
* Delete the unused flag TERMP_IGNDELIMIngo Schwarze2013-12-241-1/+1
* Implement a long-standing desideratum,Ingo Schwarze2013-12-231-3/+14
* Polishing the worms in my favourite can, term_flushln().Ingo Schwarze2013-12-221-7/+5
* Move the last column-counting members of struct termp (col and maxcols)Ingo Schwarze2013-08-211-18/+14
* Implement the roff(7) font-escape sequence \f(BI "bold+italic".Ingo Schwarze2013-08-081-28/+22
* After a leading blank on an output line, the first word was counted twiceIngo Schwarze2013-08-051-1/+1
* In keep mode, if any text is printed (even in NOSPACE mode),Ingo Schwarze2013-05-291-2/+2
* Improve formatting of badly nested font blocks.Ingo Schwarze2012-11-161-1/+1
* In flush-left mode of both man(7) and mdoc(7), when an output line is brokenIngo Schwarze2012-07-161-0/+8
* Remove a hack that was intended for groff-1.15 bug compatibility:Ingo Schwarze2012-07-101-6/+1
* Implement the roff \z escape sequence, intended to output the nextIngo Schwarze2012-05-311-13/+53
* Fix the vertical spacing around tbl(7) instances in man(7).Ingo Schwarze2012-05-271-2/+5
* As noticed by kristaps@, when breaking an overflowing line,Ingo Schwarze2011-09-211-5/+3
* Remove the terminal frontend flag TERMP_NOLPAD.Ingo Schwarze2011-09-191-33/+24
* fix a regression introduced in 1.11.7:Ingo Schwarze2011-09-181-1/+4
* forgotten Copyright bumps; no code changeIngo Schwarze2011-09-181-1/+1
* Remove all references to ESCAPE_PREDEF, which is now not exposed passedKristaps Dzonsons2011-05-241-22/+0
* Allow non-ASCII terminal encodings to accept unicode values for theKristaps Dzonsons2011-05-201-17/+61
* Make any un-recognised font be considered a call for the Roman font.Kristaps Dzonsons2011-05-181-0/+2
* Locale support. I'm checking this in to clean up fall-out in-tree, butKristaps Dzonsons2011-05-171-6/+45
* Add mode for -Tlocale. This mode, with this commit, behaves exactlyKristaps Dzonsons2011-05-171-12/+0
* Flip on printing `?' at Unicode codepoints in -Tascii, -Tpdf, and -Tps.Kristaps Dzonsons2011-05-171-1/+9
* Remove function calls to res() and so forth in term_word(). These wereKristaps Dzonsons2011-05-151-52/+15
* Fix missing support for \N'n' when calculating string widths in -TasciiKristaps Dzonsons2011-05-151-2/+7
* Use strcspn() in term_strlen(). Clarifies the code.Kristaps Dzonsons2011-05-151-10/+10
* Make some values "int" that were "size_t". These are primarily used forKristaps Dzonsons2011-05-141-22/+26
* Make character engine (-Tascii, -Tpdf, -Tps) ready for Unicode: make bufferKristaps Dzonsons2011-05-141-3/+3
* Make mchars_num2char() return a char like it says.Kristaps Dzonsons2011-04-301-4/+3
* Move "chars" interface out of out.h and into mandoc.h. This doesn'tKristaps Dzonsons2011-04-291-6/+6
* Remove a2roffdeco() and mandoc_special() functions and replace them withKristaps Dzonsons2011-04-091-48/+59
* Remove an unused variable (caught in lint-check)Kristaps Dzonsons2011-04-041-3/+1
* Move mandoc_isdelim() back into libmdoc.h. This fixes an unreportedKristaps Dzonsons2011-03-221-7/+0
* Step 4: merge chars.h into out.h. The functions in this file areKristaps Dzonsons2011-03-221-1/+0
* Move mdoc_isdelim() into mandoc.h as mandoc_isdelim(). This allows theKristaps Dzonsons2011-03-171-37/+5
* Move mandoc_{realloc,malloc,calloc} out of libmandoc.h and into mandoc.hKristaps Dzonsons2011-03-171-11/+2
* Make lint shut up a little bit.Kristaps Dzonsons2011-03-151-1/+1
* Implement the \N'number' (numbered character) roff escape sequence.Ingo Schwarze2011-01-301-1/+15
* Fix spacing for tables to use term_len(). Also make term.c properlyKristaps Dzonsons2011-01-041-0/+6
* Track down a bug of empty `de XX' macros causing uncertain behaviour byKristaps Dzonsons2010-12-061-1/+1
* style cleanup, no functional change:Ingo Schwarze2010-10-021-22/+14
* * need a space before .No even if it starts with a closing delimiterIngo Schwarze2010-10-011-1/+1
* Count trailing escaped blanks correctly;Ingo Schwarze2010-09-231-2/+4
* Allow string lengths to account for escapes. Now all calls to calculateKristaps Dzonsons2010-09-151-6/+42
* Churny commit to quiet lint. No functional changes.Kristaps Dzonsons2010-09-041-2/+2
* Centralize handling of literal tabs in term_flushln() in one place,Ingo Schwarze2010-08-201-10/+3