aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/term.c
Commit message (Collapse)AuthorAgeFilesLines
* Tiny EOS patch. Back-end cues front-end through flag. Front-end cues ↵Kristaps Dzonsons2010-05-121-2/+7
| | | | output engine with flag.
* Backed out break-at-hyphen changes.Kristaps Dzonsons2010-05-071-39/+4
|
* Removed pipe from front-end ("typographic") recognition as punctuation ↵Kristaps Dzonsons2010-04-081-3/+5
| | | | (noted by Ingo Schwarze).
* Removed erroneous `{' and `}' as punctuation (see mdoc.samples "General ↵Kristaps Dzonsons2010-04-031-22/+53
| | | | | | Syntax" for why this mistake was made). Noted by Ingo Schwarze. Lines of text now break at a hyphen, unless the hyphen is the first or second subsequent in a word. Inspired by a Ingo Schwarze's patch.
* Fixed two very subtle bugs in retaining overstep and maxrmargin widths ↵Kristaps Dzonsons2010-03-231-16/+14
| | | | between parse sequences.
* Big check-in of compatibility layer. This should work on most major ↵Kristaps Dzonsons2010-01-011-1/+5
| | | | architectures. Thanks to Joerg Sonnenberger.
* Fixed \c support for all input and output modes (documented in mandoc_char.7).Kristaps Dzonsons2009-11-121-1/+4
|
* FreeBSD sys/types inclusion fixed.Kristaps Dzonsons2009-11-121-3/+5
|
* Basically re-wrote -Tascii font handling: instead of incrementers forKristaps Dzonsons2009-11-121-88/+148
| | | | | | | | | bold and underline, we use a stack (no cascading, no double-font-mode). Font modes with \f only affect the current stack point, as documented in mdoc.7 and man.7. While -mdoc stacks fonts with embedded macros, -man replaces them (the stack is always size 1). This works for all invocations in supported systems' manual corpora to date. It doesn't support groff's insanity with line-scoped \f as documented in mdoc.7.
* Hooked up -Tascii to a2roffdeco backend.Kristaps Dzonsons2009-11-071-202/+50
|
* -Tascii now correctly ignores \s clauses.Kristaps Dzonsons2009-11-061-12/+90
|
* Correct support for `\fX' font modes in -Tascii.Kristaps Dzonsons2009-11-051-8/+22
|
* Added functionality of -Tascii non-breaking `\~' space.Kristaps Dzonsons2009-11-051-2/+7
|
* Using perror() instead of fprintf for failure from library functions.Kristaps Dzonsons2009-10-311-3/+3
|
* More lint fixes.Kristaps Dzonsons2009-10-301-4/+5
| | | | Removed err.h from inclusions (less main.c--still in progress).
* Lint fixes.Kristaps Dzonsons2009-10-301-3/+5
| | | | Made realloc puke with fprintf.
* Continued safe handling of allocations.Kristaps Dzonsons2009-10-301-3/+6
|
* Removed superfluous memset (thanks Joerg Sonnenberger).Kristaps Dzonsons2009-10-281-3/+2
|
* bzero() -> memset() (noted by Joerg Sonnenberger).Kristaps Dzonsons2009-10-271-3/+9
|
* Merged Ingo's comments on term_flushln() variable names.Kristaps Dzonsons2009-10-271-14/+14
| | | | Fixed assertion (this needs more consideration) when an overstep line is exactly as long as the rmargin.
* Added time.h to various files for FreeBSD compilation (thanks Ulrich Sporlein).Kristaps Dzonsons2009-10-261-1/+2
|
* Lint fix.VERSION_1_9_10Kristaps Dzonsons2009-10-261-2/+3
|
* Fixed overstep patch.Kristaps Dzonsons2009-10-261-2/+3
|
* Removed need for superfluous `os' value in overstep calculation (thanks Ingo ↵Kristaps Dzonsons2009-10-241-8/+5
| | | | Schwarze).
* Fixed order of printing backspace-encoding for terms that are both bold and ↵Kristaps Dzonsons2009-10-221-5/+5
| | | | underlined (noted by Joerg Sonnenberger).
* More fixes to scaling-width multipliers (which, just to make my life ↵Kristaps Dzonsons2009-10-191-5/+8
| | | | difficult, differ not only between -mdoc and -man, but between various invocation, e.g., -offset and -width).
* Made sure devices and formats recognise that -man and -mdoc have different ↵Kristaps Dzonsons2009-10-181-32/+24
| | | | syntax for scaling widths: -mdoc assumes no unit means that the value is a string literal while -man instead uses the default vertical/horizontal scale.
* Arbitrary horizontal and vertical scaling widths now handled by -mdoc -Tascii.Kristaps Dzonsons2009-10-181-1/+84
| | | | Terminal scaling backend pushed into term.c.
* Moved output definitions into main.h.Kristaps Dzonsons2009-10-131-32/+2
| | | | Pushed terminal_{mdoc,man} into {mdoc,man}_term.c.
* Fix hang lists in -Tascii -Tmdoc, which seem to have been broken since ~1.8.x.Kristaps Dzonsons2009-10-101-2/+8
| | | | Noted similarity of HP/TP and -hang/-tag in mandoc.1.
* All special characters sync'd with groff, both -Thtml and -Tascii.Kristaps Dzonsons2009-09-231-1/+4
| | | | Re-added text links to index.sgml (just for show).
* Fixed memory leak on close.Kristaps Dzonsons2009-09-201-2/+2
|
* ascii_xxx -> chars_xxx (intended to hold more than just ascii encoding).Kristaps Dzonsons2009-09-171-6/+7
| | | | More html work.
* Put closedelim and opendelim right in term_word() (unnecessary extra function).Kristaps Dzonsons2009-09-161-65/+41
|
* Made tree/term/out() functions return void.Kristaps Dzonsons2009-09-161-7/+7
| | | | Put err() functions back into front-ends (no use making it needlessly complex).
* Removed TERMP_BOLD, TERMP_UNDER, TERMP_STYLE in favour of recursive-friendly ↵Kristaps Dzonsons2009-09-151-9/+9
| | | | | | increments. Cleaned up confusing behaviour of p->flags.
* Fix in newline.Kristaps Dzonsons2009-07-281-4/+9
| | | | Correct printing of N-char predefined/special strings.
* Re-ordered ascii.in looking for dupes.Kristaps Dzonsons2009-07-271-3/+17
| | | | | Added `vim -q' tip to manuals.7 (thanks uqs@sporlein.net). ifdef'd production of missing specials/predefines.
* Clarified special chars/predefined chars in mandoc_char.7.Kristaps Dzonsons2009-07-271-48/+33
| | | | | Cleaned up escape section in man.7, mdoc.7. Cleaned up function names in term.c.
* Correct handling of \*(xx, \*[xxx], \*x versus \x, \(xx, \([xxx]: predefined ↵Kristaps Dzonsons2009-07-271-6/+25
| | | | strings and escape characters, respectively.
* Text tokens with leading whitespace (like indented blocks in `Bd -literal') ↵Kristaps Dzonsons2009-07-241-2/+2
| | | | are printed correctly.
* Lintified term_flushln() (type mismatches).Kristaps Dzonsons2009-07-231-13/+24
|
* Bringing spacing more in line with groff, patches from schwarze@openbsd.org. ↵Kristaps Dzonsons2009-07-211-35/+38
| | | | Pre-testing.
* Fixed and cleaned up "phrase" handling (`Bl -column' columns).Kristaps Dzonsons2009-07-191-2/+5
| | | | Found strange newline bug in -diag handling (and others?).
* Subtle fixes correcting vis count with erroneously-decorated whitespace.Kristaps Dzonsons2009-07-161-5/+5
|
* Fix in nospace following close-delimiter.Kristaps Dzonsons2009-07-161-3/+4
|
* Removed assertion (disregarded blank literal lines).Kristaps Dzonsons2009-07-151-2/+1
|
* Removed term.c break-up of tokens (happens in libmdoc).Kristaps Dzonsons2009-07-151-89/+63
| | | | Removed costly, redundant calculations of string length (in-line printing).
* Cleaned up arg_width and arg_column functions.Kristaps Dzonsons2009-07-141-2/+2
| | | | | Added XXn and XXm support to -offset (not documented in mdoc.samples, but used in mdoc.samples!). Lint warnings fixed.
* Support for TERMP_HANG in flushln(): -hang lists.Kristaps Dzonsons2009-07-141-6/+19
|