aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_macro.c
Commit message (Collapse)AuthorAgeFilesLines
* Added time.h to various files for FreeBSD compilation (thanks Ulrich Sporlein).Kristaps Dzonsons2009-10-261-1/+2
|
* Added `%U' to -mdoc (doesn't render in a nice way yet).Kristaps Dzonsons2009-10-241-1/+2
|
* Some extra html tags and near-complete Bl: -tag is hopeless (synonym for ↵Kristaps Dzonsons2009-09-201-1/+2
| | | | -hang, now) and -column is still pending.
* Lintifications.Kristaps Dzonsons2009-09-161-14/+14
|
* Lookup hashes are now static tables, ordered first-level by second ↵Kristaps Dzonsons2009-09-161-2/+2
| | | | character, then randomly along a chain. Improves performance by a small fraction and considerably cleans up hash sources.
* Delimiter whitespace is correctly flagged (required some special handling).Kristaps Dzonsons2009-08-201-3/+3
|
* In-line documentation of mdoc_macro file.Kristaps Dzonsons2009-08-191-265/+202
| | | | Moved _NEXT_ macros into _alloc_ routines (where they belong).
* Moved MDOC_NEXT_SIBLING into mdoc_word (libmdoc).Kristaps Dzonsons2009-08-191-10/+1
| | | | De-chunking of word terms in libman.
* Noted areas that need work in libmdoc.Kristaps Dzonsons2009-08-131-2/+3
|
* Columns with `Bl -column' correctly check for CALLABLE status.Kristaps Dzonsons2009-07-291-28/+13
|
* Moved CALLABLE check to lookup_raw().Kristaps Dzonsons2009-07-291-18/+24
| | | | | | Made PARSABLE check occur prior to lookup(). Non-PARSEABLE macros no longer warn against having macro-like parameters. Non-CALLABLE macros no longer produce an error, just display their symbols (as in groff) (pointed out by joerg@netbsd.org).
* Patches and results of LLVM static analysis (thanks uqs@sporlein.net).Kristaps Dzonsons2009-07-251-6/+5
|
* Allow `An' to accept NULL arguments (-split/-nosplit).Kristaps Dzonsons2009-07-241-4/+6
|
* Noted that `Pa' can accept 0 arguments.Kristaps Dzonsons2009-07-211-1/+3
|
* Fixed and cleaned up "phrase" handling (`Bl -column' columns).Kristaps Dzonsons2009-07-191-60/+26
| | | | Found strange newline bug in -diag handling (and others?).
* Made `Cd' parseable (too many SYNOPSIS sections do this).Kristaps Dzonsons2009-07-191-2/+2
|
* Explicit-close macros now only warn when encountering trailing terms, notKristaps Dzonsons2009-07-191-7/+7
| | | | error out (try `.Ed foo').
* Documented `br' macro in mdoc.7.Kristaps Dzonsons2009-07-171-7/+3
| | | | Made `Pp' and `Lp' be inline_eoln() (not sure why they weren't before).
* Added `br' and `sp' macros (requested by joerg@netbsd.org, jmc@openbsd.org).Kristaps Dzonsons2009-07-171-1/+3
|
* `Nd' is now a BFI (was an ELEM). Noted by joerg@netbsd.org, behaviour ok ↵Kristaps Dzonsons2009-07-121-4/+41
| | | | jmc@openbsd.org, etc.
* Made `In' handling work in new-groff style (see mdoc.samples).Kristaps Dzonsons2009-07-071-2/+2
|
* Tabularised error-code lookup in mdoc.c.Kristaps Dzonsons2009-07-071-3/+3
|
* Consolidated all err/warnings into mdoc.c via libmdoc.h.Kristaps Dzonsons2009-07-061-80/+12
|
* Initial removal of enum mdoc_warn from mdoc warnings (unnecessary complication).Kristaps Dzonsons2009-07-061-3/+3
|
* Removed superfluous FIXMEs (fixed already).Kristaps Dzonsons2009-06-171-3/+1
|
* Removed MDOC___: moved MDOC_Ap to its index (comments not passed into mdoc ↵Kristaps Dzonsons2009-06-161-3/+2
| | | | parser).
* `Lk' is correctly handled as CALLABLE (note groff munges nested output).Kristaps Dzonsons2009-06-121-5/+9
| | | | | | | `Mt' is now CALLABLE. Fixed missing validate/action of zero-element, non-called inline elements. Fixed missing validate/action of nested inline element re-calls. Fixed bogus column argv index in validator.
* `Ft' and `Ms' are now callable and compat-noted in mdoc.7 (joerg@netbsd.org).Kristaps Dzonsons2009-06-111-4/+4
|
* `An' now callable, historic use noted in mdoc.7 (joerg@netbsd.org).Kristaps Dzonsons2009-06-111-2/+2
|
* Fixed license email address.Kristaps Dzonsons2009-06-101-2/+2
|
* Using proper license template (const).Kristaps Dzonsons2009-04-121-12/+10
|
* Manual .Dt fields CAPITALISED.Kristaps Dzonsons2009-04-121-3/+7
| | | | | | | | Indent set to 5 chars (nroff compat). Half-indent set to 3 chars (nroff compat). Default behaviour is loose-y (ignore macro/char/escape). Added -fstrict. Added unknown-character ignoring.
* mdoc_tokhash -> hashKristaps Dzonsons2009-04-021-3/+3
| | | | Initial man hashtab (BROKEN).
* General clean-ups.Kristaps Dzonsons2009-03-311-7/+1
|
* Added some new manuals (mdoc.3 mandoc_char.7).Kristaps Dzonsons2009-03-271-12/+55
| | | | Support for .br in libman.
* Fixes in going over all OpenBSD manuals.Kristaps Dzonsons2009-03-271-11/+23
|
* -man linked to mandoc in documentation.Kristaps Dzonsons2009-03-231-5/+2
|
* First addition of -man macro support.Kristaps Dzonsons2009-03-231-0/+1446
Abstraction of mdoc.