summaryrefslogtreecommitdiffstatshomepage
path: root/main.c
Commit message (Collapse)AuthorAgeFilesLines
* First check-in of PostScript output. This does not change any logicKristaps Dzonsons2010-06-071-9/+25
| | | | | | within term.c, but does add a small shim over putchar() that switches on the output engine. Prints, for this initial version, only monospace and without font decorations. It's a start.
* Add -Owidth=width option to mandoc -Tascii. Asked for by joerg@ about aKristaps Dzonsons2010-06-071-2/+2
| | | | thousand years ago. Note that this is normalised to >=60.
* Add MAP_SHARED for mmap, at least NetBSD with DIAGNOSTIC is quite noisyJoerg Sonnenberger2010-06-061-2/+2
| | | | otherwise.
* Consolidated list processing to a single loop in mdoc_validate.c. ThisKristaps Dzonsons2010-06-031-2/+2
| | | | | | | | | | relieves having to repeat running over the argument list in mdoc_action.c and mdoc_validate.c. Default to LIST_item for type-less lists (groff technically doesn't do this: it just ignores the `It' lines altogether). Make MANDOC_LISTTYPE be a recoverable error.
* Spelling patches provided by Ulrich Spoerlein.Kristaps Dzonsons2010-06-011-3/+3
|
* Cleanup post_bl_head() to use enum mdoc_list (avoid traversing thatKristaps Dzonsons2010-05-311-2/+2
| | | | | | | | list). Reverted MANDOC_COLUMNS to be a bad-bad syntax error: we don't, and apparently never have, allowed mixing of -column syntaxes. This would have segfaulted if encountered.
* Enable the unified error/warning enumeration in mandoc.h that'sKristaps Dzonsons2010-05-171-79/+95
| | | | | | | | | | | stringified in main.c. Allow `An' to handle an argument and child (with a warning). Allow `Rv' and `Ex' to work without a prior `Nm' as groff does (with a warning). Allow inconsistent column syntax to only raise a warning.
* `ig' support in all its glory. TryKristaps Dzonsons2010-05-161-3/+3
| | | | | | | | | | | | | | | | | | .ig ig asdf .ig fdsa .. or .ig if asdf .if n \ foo for a laugh. It all works. Lots of regression tests supporting this and documentation for the same.
* Regression tests in place for `.if' in libroff.Kristaps Dzonsons2010-05-161-1/+2
| | | | | Check against some strange `.if' constructs I missed. Added initial roff.7 manual.
* Allow roff_parseln() to be re-run.Kristaps Dzonsons2010-05-161-9/+31
| | | | | | | | | Allow roff_parseln() to manipulate the line buffer offset. This is used in situations like `.ie n .TH FOO 1' or `.ie n .ie n', where the line buffer offset is recalculated then the roff parser re-run. Fix mdoc_parseln() and man_parseln() to accept the initial line offset. WARNING: backed-out ALL roff macros whilst accomodating for how roff handles multi-line conditionals (in short, re-running the parser).
* Fix allowing silly '\'' control character.Kristaps Dzonsons2010-05-161-2/+2
|
* Backed-out warning messages (lots).Kristaps Dzonsons2010-05-151-1/+3
|
* The `ig' now supports `ig end-macro'.Kristaps Dzonsons2010-05-151-2/+15
| | | | Initial warning/error messages in place (still experimental).
* Segfault fix and letting warnings slip through for now.Kristaps Dzonsons2010-05-151-2/+2
|
* Add mandoc.h, which will eventually replace compilers' inner enum errors ↵Kristaps Dzonsons2010-05-151-18/+70
| | | | | | with unified ones. Add initial roff pre-processor shim, a compiler sitting outside of the other compilers that processes pure roff instructions.
* Reorganise the comment stripping and line merging to be easier to followJoerg Sonnenberger2010-05-151-51/+53
| | | | and slightly faster.
* Make the output width an option for ascii_alloc and use that to computeJoerg Sonnenberger2010-05-151-2/+2
| | | | the default margin. Hard-code 80 chars/line for now.
* Push buffer resizing into its own function. Keep initial allocations theJoerg Sonnenberger2010-05-151-20/+25
| | | | same size as before.
* Cleanup indentation after moving the read buffering out of the loop.Joerg Sonnenberger2010-05-151-54/+52
|
* "Push down the buffer to where they are used.Kristaps Dzonsons2010-05-151-78/+131
| | | | | | Handle the stdin/file argument in one function. On top, use either mmap or if that failed reading the whole file into a single buffer." (patches by Joerg Sonnenberger, ed. Kristaps)
* Whacked lastman and lastmdoc (not being used).Kristaps Dzonsons2010-05-151-7/+1
|
* "Accumulate errors and warnings in global variables and exit with errorKristaps Dzonsons2010-05-141-58/+60
| | | | if either is not null on exit." (patch by Joerg Sonnenberger)
* Fix for Joerg's patch stripping of pre-comment whitespace (by Joerg).Kristaps Dzonsons2010-05-141-3/+3
|
* Remove -fno-ign-chars as well-argued by Ingo Schwarze. Patch by Ingo ↵Kristaps Dzonsons2010-05-091-20/+10
| | | | Schwarze, too.
* Merge patch by Jason McIntyre cleaning on mandoc.1: `Ar' -> `Cm' and other ↵Kristaps Dzonsons2010-04-121-3/+9
| | | | | | readability fixes. Merge modified patch by Joerg Sonnenberger that rewinds to whitespace when encountering trailing line-comments.
* Have -Tlint imply -Wall and -fstrict. Based on a patch submitted by Ingo ↵Kristaps Dzonsons2010-03-221-32/+38
| | | | Schwarze.
* Fixed Makefile for `make lint' dep. on config.hKristaps Dzonsons2010-01-291-1/+10
| | | | Added -Txhtml for XHTML output (minimal increase to programme logic). Because groff has it and it bothers me that we don't.
* Big check-in of compatibility layer. This should work on most major ↵Kristaps Dzonsons2010-01-011-6/+5
| | | | architectures. Thanks to Joerg Sonnenberger.
* Added forgotten newline terminators in main.c.Kristaps Dzonsons2009-11-021-5/+5
|
* Added lint to __attribute__ defines.Kristaps Dzonsons2009-11-021-2/+4
|
* Using straight-up __attribute__ (inspired by portable openssh).Kristaps Dzonsons2009-11-021-13/+10
|
* Removed non-portable __progname (thanks Joerg Sonnenberger).Kristaps Dzonsons2009-10-311-4/+10
|
* Using perror() instead of fprintf for failure from library functions.Kristaps Dzonsons2009-10-311-16/+14
|
* libmdoc and libman now using non-recoverable allocations (simpler code).Kristaps Dzonsons2009-10-301-15/+5
|
* bzero() -> memset() (noted by Joerg Sonnenberger).Kristaps Dzonsons2009-10-271-4/+4
|
* Merged patch to allow -fign-escape (thanks Joerg Sonnenberger).Kristaps Dzonsons2009-10-261-3/+7
|
* Allowed -O to be invoked multiple times.Kristaps Dzonsons2009-10-261-3/+5
|
* Portability: replaced queue macros in html.c (Joerg Sonnenberger).Kristaps Dzonsons2009-10-261-4/+4
| | | | | Fixed "-o" residue. Added "-O" to usage() (-o didn't appear there either).
* Changed `-o' to `-O' for clarity. THIS BREAKS UTILITIES DEPENDING ON -o!Kristaps Dzonsons2009-10-261-2/+2
|
* Moved output definitions into main.h.Kristaps Dzonsons2009-10-131-12/+2
| | | | Pushed terminal_{mdoc,man} into {mdoc,man}_term.c.
* Clean up consts (noted by Joerg Sonnenberger and Ulrich Sporlein).Kristaps Dzonsons2009-10-131-5/+8
|
* Removed new-born out.{h,c} (not a good idea).Kristaps Dzonsons2009-09-211-12/+8
| | | | | Removed if 0 for HTML-mode output (why not). Added option -oxxxx for passing options to output devices.
* More updates to html.c.Kristaps Dzonsons2009-09-161-1/+22
| | | | Secretly enabled -Thtml in main.c (obviously not yet documented).
* Made tree/term/out() functions return void.Kristaps Dzonsons2009-09-161-11/+9
| | | | Put err() functions back into front-ends (no use making it needlessly complex).
* Fix in newline.Kristaps Dzonsons2009-07-281-2/+3
| | | | Correct printing of N-char predefined/special strings.
* main.c using fprintf instead of warnx for parse errors (like cc).Kristaps Dzonsons2009-07-271-7/+6
| | | | | | Error string is now file:line:col: message. Removed sed from vim -q example in manuals.7. Fixed column reporting (off by one).
* Added -fign-errors for VERY fast checking of many manuals without stopping ↵Kristaps Dzonsons2009-07-241-15/+28
| | | | at errors.
* Small clean-ups in error message usage.VERSION_1_7_23Kristaps Dzonsons2009-07-071-2/+2
| | | | Version.
* Cleaned out duplicate {mdoc,man}warn in main.c.Kristaps Dzonsons2009-07-061-26/+5
|
* Backed -Wcompat,syntax out of front-end.Kristaps Dzonsons2009-07-061-17/+11
|