Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed segfault in `Rs' empty block. | Kristaps Dzonsons | 2009-09-24 | 1 | -1/+1 |
| | |||||
* | Added EBADCHILD error (bad child of parent context). | Kristaps Dzonsons | 2009-09-24 | 1 | -4/+48 |
| | | | | | `Rs' post-checks that all children are proper bibliographic elements. `Rs' correctly re-orders its children as per groff's output (including %C). | ||||
* | Updated manual structure in mdoc.7. | Kristaps Dzonsons | 2009-08-20 | 1 | -15/+2 |
| | | | | | | Synchronised mdoc.template and mdoc.7 manual structure. `Rv' and `Ex' now accept multiple arguments (-std made standalone, terms as children). `Rv' and `Ex' format correctly in -Tascii (plurals, commas, etc.). | ||||
* | Patches and results of LLVM static analysis (thanks uqs@sporlein.net). | Kristaps Dzonsons | 2009-07-25 | 1 | -0/+1 |
| | |||||
* | `An' gives correct error message in encountering arguments/parameters. | Kristaps Dzonsons | 2009-07-24 | 1 | -1/+1 |
| | |||||
* | Bl -column now accepts columns = (1 + stated columns), which covers all ↵ | Kristaps Dzonsons | 2009-07-23 | 1 | -1/+1 |
| | | | | remaining column usage/abuse I can see. | ||||
* | Undocumented behaviour in groff: `Bl -column' implies `-compact'. | Kristaps Dzonsons | 2009-07-20 | 1 | -4/+13 |
| | | | | mandoc now allows fewer columns than the -width specifies. | ||||
* | More clarity fixes in mdoc.7. | Kristaps Dzonsons | 2009-07-18 | 1 | -1/+1 |
| | | | | Sm/Sy argument to `Bf' fixed (schwarze@openbsd). | ||||
* | `sp' documented: validates & produces correct output. | Kristaps Dzonsons | 2009-07-17 | 1 | -1/+3 |
| | |||||
* | Removed EARGVPARM (superfluous, overly error-generating). | Kristaps Dzonsons | 2009-07-17 | 1 | -3/+34 |
| | | | | Added `sp' handler. | ||||
* | Documented `br' macro in mdoc.7. | Kristaps Dzonsons | 2009-07-17 | 1 | -3/+2 |
| | | | | 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 Dzonsons | 2009-07-17 | 1 | -0/+2 |
| | |||||
* | Err/warn fix (schwarze@openbsd.org). | Kristaps Dzonsons | 2009-07-13 | 1 | -120/+110 |
| | | | | Lots of whitespace churn in getting functions aligned nicely. | ||||
* | Replacement of `Lb' in mdoc_action.c. | Kristaps Dzonsons | 2009-07-12 | 1 | -1/+13 |
| | | | | | | Added warning against bogus `Lb' (like groff does). Added proper quotes around `Lb' in mdoc_term.c. Moved mdoc_a2lib -> libmdoc (where it belongs). | ||||
* | Moved mdoc_a2st() out of mdoc.h -> libmdoc.h (replacement in mdoc_action.c). | Kristaps Dzonsons | 2009-07-12 | 1 | -1/+1 |
| | | | | Made bad standards into an error (were a warning). | ||||
* | Check for NAME sanity fixed (last named section -> last section). | Kristaps Dzonsons | 2009-07-12 | 1 | -1/+1 |
| | |||||
* | Added back in MDOC_TEXT stipulation in NAME check (post-Nm punctuation, duh). | Kristaps Dzonsons | 2009-07-12 | 1 | -0/+2 |
| | |||||
* | `Nd' is now a BFI (was an ELEM). Noted by joerg@netbsd.org, behaviour ok ↵ | Kristaps Dzonsons | 2009-07-12 | 1 | -4/+5 |
| | | | | jmc@openbsd.org, etc. | ||||
* | Fixed mdoc_nwarn/mdoc_nerr considering themselves err/warn instead of ↵ | Kristaps Dzonsons | 2009-07-12 | 1 | -2/+4 |
| | | | | warn/err (BIG mistake). From suggestion by <joerg@netbsd.org>. | ||||
* | Made `In' handling work in new-groff style (see mdoc.samples). | Kristaps Dzonsons | 2009-07-07 | 1 | -3/+1 |
| | |||||
* | Small clean-ups in error message usage.VERSION.1.7.23 | Kristaps Dzonsons | 2009-07-07 | 1 | -4/+2 |
| | | | | Version. | ||||
* | Consolidated all err/warnings into mdoc.c via libmdoc.h. | Kristaps Dzonsons | 2009-07-06 | 1 | -221/+73 |
| | |||||
* | Fix in MDOC_IGN_CHARS ref. | Kristaps Dzonsons | 2009-07-06 | 1 | -1/+1 |
| | |||||
* | Consolidated mdoc_validate.c pwarn into perr (slowly phasing out per-file ↵ | Kristaps Dzonsons | 2009-07-06 | 1 | -109/+83 |
| | | | | pre-formatted error strings). | ||||
* | Initial removal of enum mdoc_warn from mdoc warnings (unnecessary complication). | Kristaps Dzonsons | 2009-07-06 | 1 | -11/+5 |
| | |||||
* | Removed WDEPCOL (schwarze@openbsd.org). | Kristaps Dzonsons | 2009-07-04 | 1 | -5/+0 |
| | |||||
* | Moved escape validation into libmandoc.h/mandoc.c (common between ↵ | Kristaps Dzonsons | 2009-07-04 | 1 | -4/+6 |
| | | | | | | | libman/libmdoc1). libman supports MAN_IGN_ESCAPE (like MDOC_IGN_ESCAPE). All popular escapes now handled consistently. | ||||
* | Removed escape-deprecation note (better solution in progress, ↵ | Kristaps Dzonsons | 2009-06-27 | 1 | -8/+0 |
| | | | | | | | | schwarze@openbsd.org). Using EXIT_FAILURE for parse errors (nicm@openbsd.org). Fixed use of warn/warnx (nicm@openbsd.org). Fixed use of getsubopt (nicm@openbsd.org). | ||||
* | Added nchild decrement in libman (not used, but better in than forgotten). | Kristaps Dzonsons | 2009-06-18 | 1 | -17/+2 |
| | | | | Added nchild to libmdoc, deprecated count() functions in validator. | ||||
* | Lint fixes. | Kristaps Dzonsons | 2009-06-17 | 1 | -3/+2 |
| | |||||
* | `Bl -column' now correctly handles tail entries (Bl -column -more... arg0...). | Kristaps Dzonsons | 2009-06-17 | 1 | -17/+31 |
| | |||||
* | Cleaned up .Bf validator. | Kristaps Dzonsons | 2009-06-17 | 1 | -18/+13 |
| | |||||
* | Section orders are more elegantly handled (MDOC_PBODY is a flag). | Kristaps Dzonsons | 2009-06-17 | 1 | -24/+25 |
| | | | | Cleaned up string->enum conversion for section lookup. | ||||
* | Noted deprecation of \*( and \* special-character escapes. | Kristaps Dzonsons | 2009-06-17 | 1 | -2/+8 |
| | | | | Minor clean-ups. | ||||
* | Removed MDOC___: moved MDOC_Ap to its index (comments not passed into mdoc ↵ | Kristaps Dzonsons | 2009-06-16 | 1 | -2/+1 |
| | | | | parser). | ||||
* | `Lk' is correctly handled as CALLABLE (note groff munges nested output). | Kristaps Dzonsons | 2009-06-12 | 1 | -4/+6 |
| | | | | | | | `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. | ||||
* | Clean up validation of field widths. | Kristaps Dzonsons | 2009-06-11 | 1 | -28/+55 |
| | | | | | | Pushed field-width warn/error into warn/error routine. Removed superfluous space at output eoln. Fixed overzealous line break in lists. | ||||
* | Fixed license email address. | Kristaps Dzonsons | 2009-06-10 | 1 | -1/+1 |
| | |||||
* | Version bumped.VERSION.1.7.13 | Kristaps Dzonsons | 2009-04-12 | 1 | -1/+1 |
| | | | | `.Er' has more section restrictions (Joerg). | ||||
* | Using proper license template (const). | Kristaps Dzonsons | 2009-04-12 | 1 | -12/+10 |
| | |||||
* | Manual .Dt fields CAPITALISED. | Kristaps Dzonsons | 2009-04-12 | 1 | -2/+17 |
| | | | | | | | | 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. | ||||
* | Added -p1003.1-2008 specification. | Kristaps Dzonsons | 2009-04-02 | 1 | -1/+1 |
| | | | | | Fixed invalid memory accesses (concat()). Made -fign-macro be the default for libman. | ||||
* | General clean-ups. | Kristaps Dzonsons | 2009-03-31 | 1 | -51/+62 |
| | |||||
* | Added man validator, renamed mdoc validator. | Kristaps Dzonsons | 2009-03-25 | 1 | -0/+1396 |