aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man_term.c
Commit message (Expand)AuthorAgeFilesLines
* Delete the redundant "nchild" member of struct roff_node, replacingIngo Schwarze2016-01-081-2/+2
* To make the code more readable, delete 283 /* FALLTHROUGH */ commentsIngo Schwarze2015-10-121-11/+1
* modernize style: "return" is not a functionIngo Schwarze2015-10-061-33/+33
* Trailing whitespace is significant when determining the width of a tagIngo Schwarze2015-09-211-3/+3
* If an explicit line break request (.br or .sp) occurs within an .HP block,Ingo Schwarze2015-04-191-1/+12
* Decouple the token code for "no request or macro" from the individualIngo Schwarze2015-04-191-2/+2
* Delete the wrapper functions mdoc_meta(), man_meta(), mdoc_node(),Ingo Schwarze2015-04-181-10/+6
* Replace the structs mdoc and man by a unified struct roff_man.Ingo Schwarze2015-04-181-2/+2
* Do not mistreat empty arguments to font alternating macrosIngo Schwarze2015-04-061-2/+5
* On a new RS nesting level, the saved width starts from the defaultIngo Schwarze2015-04-061-2/+2
* Use the default width for .RS without arguments.Ingo Schwarze2015-04-061-2/+4
* Give man(7) section and subsection headers hanging indentation.Ingo Schwarze2015-04-041-1/+13
* Rounding rules for horizontal scaling widths are more complicated.Ingo Schwarze2015-04-041-6/+6
* Fix a quirk with respect to empty .HP.Ingo Schwarze2015-04-041-1/+12
* Third step towards parser unification:Ingo Schwarze2015-04-021-18/+16
* Second step towards parser unification:Ingo Schwarze2015-04-021-9/+9
* First step towards parser unification:Ingo Schwarze2015-04-021-47/+48
* Avoid off-by-one read access to the termacts array, which couldIngo Schwarze2015-03-151-2/+3
* Fix vertical spacing at the beginning of tables.Ingo Schwarze2015-03-061-7/+3
* Have pity on the poor stack.Ingo Schwarze2015-01-301-6/+6
* Delete the redundant tbl span flags, just inspect the actual dataIngo Schwarze2015-01-301-2/+2
* Strangely, ignoring the roff(7) .na request was implemented in the man(7)Ingo Schwarze2015-01-241-2/+1
* For .RS, we need to save the information how much we actually indentedIngo Schwarze2014-12-241-28/+14
* When a man(7) document contains unreasonably large numbers forIngo Schwarze2014-12-241-10/+19
* support negative horizontal widths in man(7);Ingo Schwarze2014-12-231-106/+72
* some scaling unit fixes:Ingo Schwarze2014-12-231-15/+5
* even if the second argument to .IP is invalid, don't print itIngo Schwarze2014-12-231-4/+3
* correctly handle scaling units after .PDIngo Schwarze2014-12-231-3/+5
* fix handling of roff requests having a default scale other than "n",Ingo Schwarze2014-12-041-2/+2
* Ignore macros that never produce any text when deciding whetherIngo Schwarze2014-12-041-13/+24
* Fix the implementation and documentation of \c (continue text input line).Ingo Schwarze2014-12-021-4/+5
* We repeatedly observed assertion crashes in the low-level terminalIngo Schwarze2014-11-211-19/+11
* Make the character table available to libroff so it can check theIngo Schwarze2014-10-281-4/+1
* correct the spacing after in-line equationsIngo Schwarze2014-10-201-2/+2
* correct spacing *after* inline equations (much simpler than expected)Ingo Schwarze2014-10-201-1/+3
* correct spacing before inline equationsIngo Schwarze2014-10-201-1/+3
* Implement the traditional -h option for man(1): show the SYNOPSIS only.Ingo Schwarze2014-09-031-14/+26
* Get rid of HAVE_CONFIG_H, it is always defined; idea from libnbcompat.Ingo Schwarze2014-08-101-3/+1
* As suggested by jmc@, only include line and column numbers into messagesIngo Schwarze2014-06-201-4/+7
* Audit strlcpy(3)/strlcat(3) usage.Ingo Schwarze2014-04-231-14/+10
* fix unchecked snprintf(3) in page header printing:Ingo Schwarze2014-04-201-11/+16
* KNF: case (FOO): -> case FOO:, remove /* LINTED */ and /* ARGSUSED */,Ingo Schwarze2014-04-201-117/+73
* Add a new term_flushln() flag TERMP_BRIND (if break, then indent)Ingo Schwarze2014-04-081-4/+4
* Support relative arguments to .ll (increase or decrease line length).Ingo Schwarze2014-03-301-2/+2
* Implement the roff(7) .ll (line length) request.Ingo Schwarze2014-03-301-1/+13
* In .nf mode, use the MAN_LINE flag to detect input line breaksIngo Schwarze2014-03-081-2/+2
* To find out whether .TP head arguments are same-line or next-line arguments,Ingo Schwarze2014-03-081-5/+10
* when indenting, extend the right margin accordingly, when needed;Ingo Schwarze2014-02-161-6/+9
* Polishing the worms in my favourite can, term_flushln().Ingo Schwarze2013-12-221-5/+13
* In the parser, when closing an explicit block that is not open,Ingo Schwarze2013-11-111-1/+3