aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
...
* Removed warning for `Er' when not used in certain sections (pointed out by ↵Kristaps Dzonsons2010-04-062-13/+4
| | | | Joerg Sonnenberger).
* Allow `Bd' to accept (warn about then ignore) in-line arguments.Kristaps Dzonsons2010-04-062-5/+7
|
* Cleaned up post_bl_head() and fixed erroneous reporting of child nodes.Kristaps Dzonsons2010-04-061-12/+13
|
* Shortlist of changes checked in for this version.Kristaps Dzonsons2010-04-061-1/+16
|
* Prettyfied the stylesheet for mdocml.bsd.lv's online manuals.Kristaps Dzonsons2010-04-061-8/+17
|
* Migrating mdoc_node_free() and mdoc_node_freelist() to use ↵Kristaps Dzonsons2010-04-063-35/+53
| | | | mdoc_node_delete(), which has a more intuitive interface and mirrors libman.
* Let `Bl' accept arguments on the head line with a warning (these are ignored ↵Kristaps Dzonsons2010-04-063-6/+19
| | | | in the front-end device) (noted by Theo de Raadt).
* Note on `Fl' documented in mdoc.7.Kristaps Dzonsons2010-04-061-3/+5
|
* `Fl' now correctly suppresses the trailing space if followed by macros on ↵Kristaps Dzonsons2010-04-062-6/+6
| | | | the same line.
* Fix mdoc bug found by Claus Assmann: `Pf' should be callable.Kristaps Dzonsons2010-04-062-5/+5
|
* Make mathematical symbols have a longer first-column width (pointed out by ↵Kristaps Dzonsons2010-04-051-3/+3
| | | | Joerg Sonnenberger).
* Added mandoc_char.7 to installed manuals (noted by Joerg Sonnenberger).Kristaps Dzonsons2010-04-051-1/+2
|
* Fix issue of non-NAME sections triggering "no sections" error, reported by ↵Kristaps Dzonsons2010-04-051-2/+6
| | | | Christian Weisgerber, patched by Ingo Schwarze.
* Commited relaxation of title-less document error-out noted by Christian ↵Kristaps Dzonsons2010-04-051-3/+18
| | | | Weisgerber and patched by Ingo Schwarze.
* Fix in `Mt' mailto from a patch by Tim van der Molen.Kristaps Dzonsons2010-04-052-50/+54
| | | | | Fixed PAIR_xxx_INIT macros -- this are to be unified. Have `Vt', `Fn', `Ft', and `Fo' print whitespace afterward, instead of before.
* Enum-ised REWIND return values.Kristaps Dzonsons2010-04-051-7/+9
|
* Tentative fix of quoted punctuation issue noted by Jason McIntyre, e.g., `Li ↵Kristaps Dzonsons2010-04-051-4/+9
| | | | "!"' rendering the "!" outside of scope.
* Removed lingering `Sp' reference (not -man).Kristaps Dzonsons2010-04-051-3/+2
|
* Added generation of mdoc.h.html and man.h.html as linked from generated ↵Kristaps Dzonsons2010-04-051-2/+5
| | | | mdoc.3.html and man.3.html, respectively.
* Merged patch by Ingo Schwarze allowing `Xr' to pass through with no ↵Kristaps Dzonsons2010-04-033-5/+11
| | | | arguments (emits warning of course).
* Modified version of Ingo Schwarze's patch so that -man doesn't puke when a ↵Kristaps Dzonsons2010-04-032-4/+17
| | | | TH isn't specified.
* Merged Ingo Schwarze's patch (plus documentation) for removing extraneous ↵Kristaps Dzonsons2010-04-033-19/+36
| | | | list types, which happens fairly often.
* Merging patch by Ingo Schwarze.Kristaps Dzonsons2010-04-032-6/+17
|
* Removed erroneous `{' and `}' as punctuation (see mdoc.samples "General ↵Kristaps Dzonsons2010-04-033-33/+62
| | | | | | Syntax" for why this mistake was made). Noted by Ingo Schwarze. Lines of text now break at a hyphen, unless the hyphen is the first or second subsequent in a word. Inspired by a Ingo Schwarze's patch.
* Added new version information. Fixing up Makefile a bit.VERSION_1_9_22Kristaps Dzonsons2010-03-312-5/+23
|
* Fixed fatal bug in Xo/Xc patch that caused segfaults with last-child ↵Kristaps Dzonsons2010-03-312-10/+15
| | | | explicit-scope macros.
* Re-adjusting UGLY tags.Kristaps Dzonsons2010-03-314-9/+7
| | | | | Fixed removed assignment of type. Removed superfluous checks of mdoc_argflags (from days when comments were a macro tag).
* Macro types enum-ated (enum mdoct) (for easier debugging in gdb of "tok" ↵Kristaps Dzonsons2010-03-3110-181/+232
| | | | | | | values). Initial check-in of Ingo Schwarze's patch for Xo/Xc handling (in blocks ifdef'd "UGLY"). Put Oc-close-Op parts into UGLY ifdef blocks.
* Whitespace fix.VERSION_1_9_21Kristaps Dzonsons2010-03-311-3/+3
|
* Version (bug-fix).Kristaps Dzonsons2010-03-311-2/+2
|
* Escape TH -> Th (noticed by Joerg Sonnenberger).Kristaps Dzonsons2010-03-303-25/+30
| | | | Moved pod2man escapes into man.3 (they're not part of -man or -mdoc, technically).
* Modified in_line_eoln() to handle leading punctuation.VERSION_1_9_20Kristaps Dzonsons2010-03-303-30/+42
|
* Last remaining bits for leading-punctuation in blk_exp().Kristaps Dzonsons2010-03-301-54/+66
|
* Fixed segfault with accidentally-munged tree.Kristaps Dzonsons2010-03-291-11/+9
|
* Integrate Ingo Schwarze's patch for mdoc_iscdelim() (tri-state for opening ↵Kristaps Dzonsons2010-03-295-91/+123
| | | | | | | | | | | and closing macro punctuation). Modify blk_part_exp() to correctly handle leading punctuation before HEAD. Significantly clean up and document blk_part_exp(). Modify blk_part_imp() for to correctly handle leading punctuation before HEAD. Significantly clean up and document blk_part_imp(). Integrate Ingo Schwarze's patch for args() (using new mdoc_iscdelim() format). Documented bad `Ec' handling for later work in mdoc_term.c/mdoc_html.c.
* Final (?) fix to issue pointed out by Sascha Wildner: roff instructions ↵Kristaps Dzonsons2010-03-296-37/+44
| | | | clobbering prior scope rules and line modes.
* Initial step in fixing badness reported by Sascha Wildner (wip).Kristaps Dzonsons2010-03-293-9/+28
|
* Fix mandoc.1 ending (noted by Sascha Wildner).VERSION_1_9_19Kristaps Dzonsons2010-03-271-2/+3
|
* 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.
* ...finishing last commit message: accept both tabs and spaces between ↵Kristaps Dzonsons2010-03-271-3/+3
| | | | control character and macro text.
* *** empty log message ***Kristaps Dzonsons2010-03-271-2/+6
|
* Lint fixes.Kristaps Dzonsons2010-03-273-6/+7
|
* Lint fixes.Kristaps Dzonsons2010-03-271-5/+1
|
* Documentation of apostrophe control character.Kristaps Dzonsons2010-03-272-7/+28
|
* Fixed re-adjustment of scope in exiting roff instructions (libman).Kristaps Dzonsons2010-03-278-61/+223
| | | | | | Added title-case check for (libman). Fixed premature closure of roff instruction scope (libman). Added documentation of ignored roff macros to man(3).
* Fixed misspelt "Loongson" (noted by Ingo Schwarze).Kristaps Dzonsons2010-03-262-5/+5
|
* Lint fixes.VERSION_1_9_17Kristaps Dzonsons2010-03-251-1/+3
|
* Cleaned up version info.Kristaps Dzonsons2010-03-252-7/+7
|
* Fixed up some documentation in man.7: only documenting man.7 macros, not ↵Kristaps Dzonsons2010-03-254-58/+74
| | | | related ones (de, Vb, etc.), which aren't technically man. It's an open question as to where these /should/ be documented, however.
* Using man_node_delete() instead of man_node_free()/man_node_freelist() and ↵Kristaps Dzonsons2010-03-248-51/+241
| | | | | | | 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).