aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/term_ascii.c
Commit message (Expand)AuthorAgeFilesLines
* Protect against malicious manual pages containing .ll requests withIngo Schwarze2018-05-201-1/+7
* Make sure that mandoc only goes into UTF-8 mode if the user reallyIngo Schwarze2018-04-131-3/+15
* Switch ASCII rendering of the same mathematical symbols and greekIngo Schwarze2017-08-231-6/+6
* harmless, but weird typo; found with afterstep_faq(1)Ingo Schwarze2017-06-141-2/+2
* Prepare the terminal driver for filling multiple columns in parallel,Ingo Schwarze2017-06-071-8/+10
* Basic implementation of the roff(7) .ti (temporary indent) request.Ingo Schwarze2017-05-081-2/+6
* Basic implementation of the roff(7) .ta (define tab stops) request.Ingo Schwarze2017-05-071-2/+1
* Autodetect a suitable locale for -Tutf8 mode,Ingo Schwarze2016-07-311-2/+2
* ISO C99 7.19.2.5 doesn't like mixing putchar(3) and putwchar(3) onIngo Schwarze2016-07-081-7/+6
* Never use LC_ALL. On the one hand, it can cause misformatting.Ingo Schwarze2015-11-121-2/+10
* Major character table cleanup:Ingo Schwarze2015-10-131-12/+9
* To make the code more readable, delete 283 /* FALLTHROUGH */ commentsIngo Schwarze2015-10-121-3/+1
* modernize style: "return" is not a functionIngo Schwarze2015-10-061-10/+10
* /* NOTREACHED */ after abort() is silly, delete itIngo Schwarze2015-09-261-2/+1
* Initial, still somewhat experimental implementation to leverageIngo Schwarze2015-07-171-1/+5
* Avoid warning "unused variable" when compiling without HAVE_WCHAR.Ingo Schwarze2015-06-101-1/+3
* Rounding rules for horizontal scaling widths are more complicated.Ingo Schwarze2015-04-041-25/+19
* Actually use the new man.conf(5) "output" directive.Ingo Schwarze2015-03-271-49/+22
* Clamp width and indent settings to sensible values.Ingo Schwarze2015-02-161-3/+9
* When showing more than one formatted manual page, insert horizontal linesIngo Schwarze2014-12-311-1/+15
* Enforcing an arbitrary, implementation dependent, undocumented limitIngo Schwarze2014-12-191-1/+4
* Prevent negative arguments to the .ll request from causing integerIngo Schwarze2014-11-201-4/+6
* In -Tascii mode, print "<?>" only for Unicode escapes of unknownIngo Schwarze2014-10-281-3/+3
* Make the character table available to libroff so it can check theIngo Schwarze2014-10-281-9/+11
* Refine -Tascii rendering of Unicode characters, mostly to better agreeIngo Schwarze2014-10-281-35/+35
* Grrr, patch(1) merged the new function to the wrong place in this file.Ingo Schwarze2014-10-261-78/+78
* In -Tascii mode, provide approximations even for some Unicode escapeIngo Schwarze2014-10-261-3/+5
* Improve -Tascii output for Unicode escape sequences: For the first 512Ingo Schwarze2014-10-261-1/+76
* Implement the traditional -h option for man(1): show the SYNOPSIS only.Ingo Schwarze2014-09-031-3/+7
* While all current callers pass valid data to ascii_hspan() only,Ingo Schwarze2014-08-171-2/+2
* Improve build system and autodetection.Ingo Schwarze2014-08-161-17/+6
* Some compilers apparently worry that abort() might returnIngo Schwarze2014-08-141-2/+3
* Begin cleaning up scaling units.Kristaps Dzonsons2014-08-131-11/+21
* Get rid of HAVE_CONFIG_H, it is always defined; idea from libnbcompat.Ingo Schwarze2014-08-101-5/+3
* Clarity with respect to floating point handling:Ingo Schwarze2014-08-011-7/+7
* Even for UTF-8 output, a non-breaking space character has the same widthIngo Schwarze2014-07-271-2/+7
* KNF: case (FOO): -> case FOO:, remove /* LINTED */ and /* ARGSUSED */,Ingo Schwarze2014-04-201-26/+17
* Support relative arguments to .ll (increase or decrease line length).Ingo Schwarze2014-03-301-8/+12
* Implement the roff(7) .ll (line length) request.Ingo Schwarze2014-03-301-2/+16
* The files mandoc.c and mandoc.h contained both specialised low-levelIngo Schwarze2014-03-231-2/+2
* Use a standard locale name, "UTF-8" is an ugly non-standard aliasIngo Schwarze2013-06-011-3/+2
* Implement mdoc(7)-like output style variant for man(7) documents:Ingo Schwarze2011-12-041-3/+12
* Make the default left text margin configurable from the command line,Ingo Schwarze2011-11-131-4/+8
* forgotten Copyright bumps; no code changeIngo Schwarze2011-09-181-2/+2
* Flip on -Tutf8 backend support. This forces the UTF-8 LC_CTYPE and doesKristaps Dzonsons2011-05-201-4/+16
* It seems that __STDC_ISO_10646__ isn't defined even where it can beKristaps Dzonsons2011-05-191-1/+8
* Locale support. I'm checking this in to clean up fall-out in-tree, butKristaps Dzonsons2011-05-171-13/+70
* Add mode for -Tlocale. This mode, with this commit, behaves exactlyKristaps Dzonsons2011-05-171-6/+20
* Make character engine (-Tascii, -Tpdf, -Tps) ready for Unicode: make bufferKristaps Dzonsons2011-05-141-5/+5
* Remove unnecessary conditional...Kristaps Dzonsons2011-01-251-3/+2