summaryrefslogtreecommitdiffstatshomepage
path: root/man.c
Commit message (Collapse)AuthorAgeFilesLines
* Allow bad -man dates to flow verbatim into the front-ends. Noted byKristaps Dzonsons2010-05-261-1/+3
| | | | Ulrich Spoerlein.
* Enable the unified error/warning enumeration in mandoc.h that'sKristaps Dzonsons2010-05-171-85/+30
| | | | | | | | | | | 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.
* Add support for .AT. Properly implement .UC. Add regress tests.Joerg Sonnenberger2010-05-171-2/+2
|
* Allow roff_parseln() to be re-run.Kristaps Dzonsons2010-05-161-27/+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
|
* Remove `am', `ami', `de', `dei', and `.' from -man, as they're now in the ↵Kristaps Dzonsons2010-05-151-8/+2
| | | | roff preprocessor.
* Pull `ig' out of -man and leave it the roff preparser.Kristaps Dzonsons2010-05-151-3/+2
|
* Removed restriction on integer manual sections in -man.Kristaps Dzonsons2010-05-151-2/+3
|
* More EOS: append_delims() fitted with EOS detection, so ANY macro with ↵Kristaps Dzonsons2010-05-151-1/+3
| | | | | | appended delimiters will properly EOS. Fixed mandoc_eos() to accept sentence punctuation followed by close-delim buffers.
* Put the eos-checker into libmandoc.h.Kristaps Dzonsons2010-05-121-14/+2
| | | | Added bits in mdoc.7 and man.7 about EOS spacing.
* End-of-sentence spacing for -man -Tascii.Kristaps Dzonsons2010-05-121-1/+24
|
* Fix asserts on stripping end-of-line whitespace.Kristaps Dzonsons2010-05-081-4/+2
|
* Strip trailing, unescaped whitespace from free-form, non-literal lines (like ↵Kristaps Dzonsons2010-05-081-4/+18
| | | | groff).
* Lint fixes (type-safety for enums via -cefuh).Kristaps Dzonsons2010-05-081-4/+7
|
* De-chunking of text removed from parsers. This is a significant change (and ↵Kristaps Dzonsons2010-05-071-56/+18
| | | | | | I don't really like it), but it's what groff does. Distinction of ARGS_PHRASE and ARGS_PPHRASE in backend (not yet used).
* Sync'd mdoc.c's function names with man.c.Kristaps Dzonsons2010-04-081-1/+7
| | | | Prompted by Ingo and Claus Assman, added warn/ignore for text lines beginning with `\."'.
* Final (?) fix to issue pointed out by Sascha Wildner: roff instructions ↵Kristaps Dzonsons2010-03-291-9/+14
| | | | clobbering prior scope rules and line modes.
* Initial step in fixing badness reported by Sascha Wildner (wip).Kristaps Dzonsons2010-03-291-4/+6
|
* Last fix for tabs/spaces between control character and macro. egcs gcc.1 is ↵VERSION_1_9_18Kristaps Dzonsons2010-03-271-2/+2
| | | | now handled.
* *** empty log message ***Kristaps Dzonsons2010-03-271-2/+6
|
* Fixed re-adjustment of scope in exiting roff instructions (libman).Kristaps Dzonsons2010-03-271-5/+7
| | | | | | Added title-case check for (libman). Fixed premature closure of roff instruction scope (libman). Added documentation of ignored roff macros to man(3).
* Using man_node_delete() instead of man_node_free()/man_node_freelist() and ↵Kristaps Dzonsons2010-03-241-28/+54
| | | | | | | friends (much simpler). Split blk_imp() into blk_exp() (explicit macros), blk_dotted() (roff macros), and the original. Added de, dei, am, ami, and ig roff macros (for now, these are discarded within the parse).
* libman using enum mant instead of #defines for macros.Kristaps Dzonsons2010-03-231-13/+14
| | | | | Clean-ups, better documentation in man_hash.c. Added extra space for "." in man_hash.c (unused for the time being).
* Support for pod2man standard header macros (Vb, Ve, Sp). Based largely on a ↵Kristaps Dzonsons2010-03-231-2/+3
| | | | set of patches by Ingo Schwarze.
* Clarify -man -T[x]html handling of `br' within `B'.Kristaps Dzonsons2010-03-221-28/+50
| | | | | Consolidated node unlinking in -man. Conclude nested next-line scope issues noted by Ingo Schwarze.
* Accomodate (libman) for next-line macros followed by non-text macros `na', ↵Kristaps Dzonsons2010-03-221-4/+35
| | | | | | `sp', and `br'. Based on a patch by Ingo Schwarze.
* Check for white-space at the end of free-form text. Lack of check spotted ↵Kristaps Dzonsons2010-01-071-4/+24
| | | | by Jason McIntyre.
* Check for white-space at end of stand-alone macro line.Kristaps Dzonsons2010-01-071-3/+10
|
* Big check-in of compatibility layer. This should work on most major ↵Kristaps Dzonsons2010-01-011-5/+5
| | | | architectures. Thanks to Joerg Sonnenberger.
* Fix in junking dot lines in -man (from PR by Alex Kozlov).Kristaps Dzonsons2009-11-021-4/+4
|
* libmdoc and libman now using non-recoverable allocations (simpler code).Kristaps Dzonsons2009-10-301-39/+14
|
* bzero() -> memset() (noted by Joerg Sonnenberger).Kristaps Dzonsons2009-10-271-2/+2
|
* -man also prints unknown macro (noted by Joerg Sonnenberger).Kristaps Dzonsons2009-10-261-7/+15
|
* Added `PD' to -man (doesn't do anything, yet).Kristaps Dzonsons2009-10-241-2/+2
|
* FreeBSD compile fixes (uqs@spoerlein.net).Kristaps Dzonsons2009-09-231-1/+3
|
* Lookup hashes are now static tables, ordered first-level by second ↵Kristaps Dzonsons2009-09-161-10/+4
| | | | character, then randomly along a chain. Improves performance by a small fraction and considerably cleans up hash sources.
* Added `UC' libman macro (has no effect).Kristaps Dzonsons2009-08-221-2/+2
| | | | | Corrected `UC' and `DT' not to print their arguments. Noted that `UC' and `DT' shouldn't be used.
* Added check for graphable characters in initial-line parse for libman and ↵Kristaps Dzonsons2009-08-221-1/+7
| | | | libmdoc (joerg@netbsd.org).
* Fix of MAN_NEXT when removing next-line dupes.VERSION_1_9_1Kristaps Dzonsons2009-08-211-4/+8
|
* Removed superfluous XXX.Kristaps Dzonsons2009-08-211-3/+1
| | | | Version: 1.9.1.
* Fixed `nf' behaviour (had broken with de-chunking).Kristaps Dzonsons2009-08-211-2/+12
| | | | Added warnings if literal context already open/closed.
* Open explicit scope on libman exit now only generates warning.Kristaps Dzonsons2009-08-211-5/+27
| | | | Consecutive ELINE scopes are now pruned (with a warning).
* Added `DT' macro (pointed out by joerg@netbsd.org).Kristaps Dzonsons2009-08-201-2/+2
|
* Linux compat fix.Kristaps Dzonsons2009-08-191-1/+5
|
* Moved MDOC_NEXT_SIBLING into mdoc_word (libmdoc).Kristaps Dzonsons2009-08-191-12/+62
| | | | De-chunking of word terms in libman.
* Added RS/RE macro pair (had to adjust closing rules, sec/ssec/rs/par).Kristaps Dzonsons2009-08-191-8/+17
|
* Significant overhaul in libman. Macros are now block- and line-scoped (withKristaps Dzonsons2009-08-131-48/+115
| | | | | | | | next-line scope extensions possible). man.7 reflects block and line scoping, and also includes a REFERENCE section that will be used as a template for the big mdoc reference. Many fixes in next-line behaviour for both inline and block macros. Added some macros for compatibility (from me.7). Corrected quoted-literal handling for libman.
* Added `sp' support to libman.Kristaps Dzonsons2009-07-241-2/+3
| | | | Added `\c' to known escapes (only used in man, but still).
* Tabularised error strings in libman.Kristaps Dzonsons2009-07-071-36/+16
|
* Moved escape validation into libmandoc.h/mandoc.c (common between ↵Kristaps Dzonsons2009-07-041-1/+4
| | | | | | | libman/libmdoc1). libman supports MAN_IGN_ESCAPE (like MDOC_IGN_ESCAPE). All popular escapes now handled consistently.