aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* Remove enum mdocargerr from phrase() (unused).Kristaps Dzonsons2010-05-318-32/+119
| | | | | | | | | | | | | | Add `Ta' macro, which is basically a NULL case everywhere but in mdoc_macro.c, where it closes out an existing `It' body scope and opens a new one, then continues parsing as in phrase() (TODO: merge these two?). Fix where scope-breaking was silently just dying instead of printing an error. Fix where trailing `Ta' or tab weren't creating a new MDOC_BODY context. We now support arbitrarily complex `It' contents for `Bl -column'.
* Fix unescaped `Ta' invocations in mdoc.7.Kristaps Dzonsons2010-05-311-5/+5
|
* Have mdoc_args() use enum mdoc_list instead of scanning.Kristaps Dzonsons2010-05-301-17/+4
|
* Tweak regression so it doesn't puke on the groff behaviour (allowingKristaps Dzonsons2010-05-301-1/+1
| | | | | open scopes to migrate across tabs) that we probably won't support and is well-known.
* Migrate `Bl -column' phrases to be MDOC_BODY instead of MDOC_HEAD. ThisKristaps Dzonsons2010-05-3010-70/+141
| | | | | | | | | | will make it easy for re-entrant parsing of `Ta' macros to fit in with standard closure rules. Added some more regressions for `Bl -column'. Note that one should fail, as documented in the TODO file. Recorded change of AST BNF in mdoc.3.
* Final word on lac/ac. Document flow as it relates to phrasing, as I'llKristaps Dzonsons2010-05-301-5/+18
| | | | | be changing this around and want a record in CVS of what was happening beforehand.
* Obvious fix to last patch: have ARGS_PEND also be flagged for phrase()Kristaps Dzonsons2010-05-301-2/+4
| | | | handling.
* First in several iterative patches in getting complex -column listsKristaps Dzonsons2010-05-303-9/+43
| | | | | | | | supported (which works but is tricky enough that it should be broken down into digestable parts). This simply moves around the propogation of ARGS_PEND into one recognised by phrase(). Added a few regressions for simple -column lists.
* Make check for case a little more intuitive (suggested by joerg@).Kristaps Dzonsons2010-05-301-4/+2
|
* Made `Dt' default to LOCAL and UNKNOWN instead of local and unknown (note case).Kristaps Dzonsons2010-05-304-21/+45
| | | | | | | | Have `Dt' default to UNKNOWN if it's an empty string. Raise a warning if `Dt' title isn't capitalised. Sync'd `Dt' documentation with reality.
* Fixed tech@ mailing list pointer (noted by Ulrich Spoerlein).Kristaps Dzonsons2010-05-301-4/+4
| | | | Fixed case of some anchor tag closings (no-op).
* Added a final regression for `Ar' (won't work on old groff).Kristaps Dzonsons2010-05-291-0/+10
|
* Bump 1.10.0 version in Makefile.Kristaps Dzonsons2010-05-291-2/+2
|
* Added version bits to www pages.Kristaps Dzonsons2010-05-292-108/+117
| | | | Cleaned up www to be more compact and add a header for sections.
* Give libroff an extremely simple table-lookup instead of iterating overKristaps Dzonsons2010-05-291-22/+72
| | | | | each and every macro. The table keys on the first character then walks a chain. Good enough for now.
* Moved printing of empty word [back] into mdoc_action.c so that it's notKristaps Dzonsons2010-05-293-8/+26
| | | | mirrored across front-ends.
* Adding `Ar' regression for empty-prior-closing-punctuation checkin.Kristaps Dzonsons2010-05-291-0/+17
| | | | | NOTE: this will not work on old groff, which forgets to print `file ...' when encountering an empty Ar node.
* Commit of patch floated on discuss@ a few days ago: if an in_line scopeKristaps Dzonsons2010-05-297-20/+112
| | | | | | | | | | has not been opened and closing punctuation is encountered AND the macro is marked as accepting no-content (or `Li'), then open an empty scope. Added regression tests for `Fl' and `Li' testing this behaviour. Also, squeeze hyph0.in tests into the last characters of each line so that groff doesn't hyphenate and break the test.
* Allow bad -man dates to flow verbatim into the front-ends. Noted byKristaps Dzonsons2010-05-266-14/+33
| | | | Ulrich Spoerlein.
* Documented `Ud'.Kristaps Dzonsons2010-05-265-8/+47
| | | | | | | | | | | Proper EOS handling for `Rv', `Ex', `Ud', and `Bt'. Both `Bt' and `Ud' now warn about and discard line arguments (reported by Ulrich Spoerlein). Collapsed posts_xr into posts_wtext (harmless: they're the same thing). Added regressions for `Ud' and `Bt'.
* Fixed `Lb' to be in_line (reported by Ulrich Spoerlein).Kristaps Dzonsons2010-05-268-9/+108
| | | | | | | | | Added `Lb' documentation to mdoc.7. Removed harmless but superfluous pre_lb check (was just NULL entries). Added regressions for `Lb' (NOTE that these will only run on new groff, as old groff doesn't support `Lb' at all).
* Made index.sgml release notes, mostly cribbed from Ingo's m2k10 report.Kristaps Dzonsons2010-05-251-85/+67
| | | | Added libroff references to index.sgml.
* Fix man.7 to include AT and UC in its syntax table.Kristaps Dzonsons2010-05-251-3/+4
|
* Added roff.3, which documents the roff parser interface.Kristaps Dzonsons2010-05-254-22/+177
| | | | | | | | | | | Small fix in mdoc.3 and man.3 pointing to old mdoc_cb and man_cb. Fix in Makefile adding mandoc.h to HEADS. Collapsed all HTML files into HTMLS variable (too confusing otherwise). Removed "htmls" command from Makefile (only I used it and it's just taking up space).
* Clean-up: added `Nm mdoc' to mdoc.3.Kristaps Dzonsons2010-05-252-56/+57
| | | | | | Clean-up: new-sentence, new-line for man.3. Clean-up: alpha-ordered man.3 `Nm' sections and prototypes.
* Clean-up: new-sentence, new-line for mdoc.3.Kristaps Dzonsons2010-05-251-107/+61
| | | | | | | Clean-up: removed CAVEATS section (this should be either in the TODO file or in mdoc.7 documenting mandoc incompatibilities). Clean-up: alpha-ordered `Nm' and section headers.
* Noted areas where performance can be increased.Kristaps Dzonsons2010-05-251-0/+16
|
* Smarten BADCHAR check to allow ASCII_HYPH.Kristaps Dzonsons2010-05-253-5/+6
| | | | Fix index.sgml not to puke (the relevant section will be re-written for the release anyway, but I hate seeing errors).
* Forgot to add regression tests.Kristaps Dzonsons2010-05-252-0/+35
|
* Modified version of Ingo Schwarze's patch for hyphen-breaking.Kristaps Dzonsons2010-05-258-31/+77
| | | | | | | Breakable hyphens are cued in the back-ends (with ASCII_HYPH) and acted upon in term.c or ignored in html.c. Also cleaned up XML decl printing (no need for extra vars).
* recognize ".if n" as true;Ingo Schwarze2010-05-242-9/+28
| | | | | | nothing fancy yet, no negation, no grammer, just that one letter; from OpenBSD; "looks fine" kristaps@
* provide stubs to ignore .ds, .rm and .tr,Ingo Schwarze2010-05-242-3/+37
| | | | | | which occur in the standard pod2man preamble; from OpenBSD; "sounds good" joerg@, "can be checked in" kristaps@
* sync to OpenBSD:Ingo Schwarze2010-05-243-14/+21
| | | | | | | save the visual cursor position in term_flushln() and use that to avoid multiple blank lines in nested lists while still putting subsequent empty list tags each on their own line; "go ahead" kristaps@
* Handle literal tab characters both in literal context (.Bd -literal)Ingo Schwarze2010-05-243-5/+31
| | | | | | | | and outside. In literal context, tab stops are at each eigth column; outside, they are at each fifth column. from OpenBSD mdoc_term.c rev. 1.75; "commit" kristaps@
* .Bl -tag -compactIngo Schwarze2010-05-241-9/+0
| | | | | | .Sm off .It ... fixed by joerg@ in mdoc_action.c bsd.lv 1.61, OpenBSD 1.38
* fix an obvious typo in print_bvspace():Ingo Schwarze2010-05-241-2/+2
| | | | rev. 1.125 broke vertical spacing in .Bl -column
* rewrite the main mdoc text parser, mdoc_ptext(),Ingo Schwarze2010-05-241-39/+52
| | | | | | | | making it easier to understand and fixing various bugs: * correctly strip whitespace from the end of text lines * issue consistent warnings regarding trailing spaces and tabs * escaped backslashes no longer escape the following character ok kristaps@
* Plug second meta.source leak in `UT' handling.Kristaps Dzonsons2010-05-241-1/+4
|
* Lifted 64-byte max width for Sh (now BUFSIZ).Kristaps Dzonsons2010-05-241-4/+5
|
* Fixed memory leak for `AT' (-man input).Kristaps Dzonsons2010-05-241-1/+4
|
* Fix segfault in mixing old enum types for -Thtml -mdoc.Kristaps Dzonsons2010-05-241-3/+3
|
* remove unused enum merr;Ingo Schwarze2010-05-241-57/+1
| | | | ok joerg@
* If a .Bl -tag lacks a -width, skip all non-It macros for the implicitJoerg Sonnenberger2010-05-241-3/+6
| | | | | | calculation. E.g. .Sm can occur as direct child of .Bl. OK schwarze@
* fix an obvious oversight introduced in rev. 1.5:Ingo Schwarze2010-05-241-2/+2
| | | | | MANDOCERR_BODYLOST is not intended to be fatal; required to unbreak the OpenBSD build
* Fix 1.125: Add missing return in termp_nm_pre.Joerg Sonnenberger2010-05-221-1/+2
|
* Test .SH with only empty paragraph. Don't test .IP without body.Joerg Sonnenberger2010-05-221-0/+3
|
* lines containing blank characters FIXED in OpenBSD,Ingo Schwarze2010-05-181-1/+12
| | | | and add one new .Bl -tag issue reported by Joerg
* Increase performance by stashing the list type in struct mdoc_node.Kristaps Dzonsons2010-05-176-197/+175
| | | | | | | This will eventually be used so that mdoc_macro can known whether to dump list line arguments into the body (`Bl -column' overflowing). Remove a2list() and arg_listtype() because of this.
* Added tech@ mailing list.Kristaps Dzonsons2010-05-171-2/+9
|
* Enable the unified error/warning enumeration in mandoc.h that'sKristaps Dzonsons2010-05-1731-563/+565
| | | | | | | | | | | 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.