aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* Move roff.c's strtol into libmandoc.h for use by other parts of the codeKristaps Dzonsons2011-05-143-30/+43
| | | | (which will come).
* Last sneak-in: incorrect www link.VERSION_1_11_2Kristaps Dzonsons2011-05-131-2/+2
|
* Ooops, forgot to install makewhatis manual.Kristaps Dzonsons2011-05-131-1/+6
|
* Version up! 1.11.2. Let's go...Kristaps Dzonsons2011-05-131-2/+2
|
* More release notes.Kristaps Dzonsons2011-05-131-1/+2
|
* Rename mandoc-db to makewhatis. On the suggestion of schwarze@; I agree.Kristaps Dzonsons2011-05-134-34/+45
| | | | Add initial version notes.
* Don't let Linux-isms creep into Makefile.Kristaps Dzonsons2011-05-121-1/+1
|
* Correctly catch `Vt' semicolon in mandoc-db.Kristaps Dzonsons2011-05-121-3/+4
|
* Lint fixes: remove unused function variables and pass in proper enumKristaps Dzonsons2011-05-121-8/+7
| | | | values instead of ints.
* Make sure that we check for the \(en, \(em, \-, and - separators forKristaps Dzonsons2011-05-121-4/+9
| | | | the heuristic dance to grab manual descriptions from man documents.
* Grok manual architecture in mandoc-db.c.Kristaps Dzonsons2011-05-042-3/+13
|
* Add configurations (`Cd') to mandoc-db mining.Kristaps Dzonsons2011-05-042-5/+42
| | | | | Also put some notes into index.sgml to the effect that mandoc-db exists, but is not linked to the build.
* Pick up authors in mandoc-db.Kristaps Dzonsons2011-05-032-5/+28
|
* Have mandoc-db grok `Dt'/`TH' manual title as well.Kristaps Dzonsons2011-05-031-1/+7
|
* Back out stripping of non-predef and non-special escape sequences fromKristaps Dzonsons2011-05-021-5/+4
| | | | | input (this is not yet possible with mandoc_escape(), which depends on nil-terminated strings).
* Have mandoc-db strip out escapes that aren't special or predefinedKristaps Dzonsons2011-05-011-16/+55
| | | | characters. This is a work-in-progress that has some issues.
* Documenting the mchars_XXXX part of mandoc.h.Kristaps Dzonsons2011-05-011-2/+88
|
* Remove mdoc.template. It's already embedded in man(7) and mdoc(7); noKristaps Dzonsons2011-05-011-42/+0
| | | | need to have it floating around separately.
* Document the fact that \N'' accepts only printable characters.Kristaps Dzonsons2011-05-011-2/+5
|
* Filter all \N'' values with isprint(). Ok schwarze@.Kristaps Dzonsons2011-05-011-10/+6
|
* Make mchars_num2char() return a char like it says.Kristaps Dzonsons2011-04-304-23/+21
|
* Rename mchars_init() -> mchars_alloc() for consistency.Kristaps Dzonsons2011-04-305-10/+10
|
* Remove enum mcharst, which hasn't been used in quite some time.Kristaps Dzonsons2011-04-305-17/+10
|
* No code change: fixing spelling errors. From a patch by uqs@. Thanks!Kristaps Dzonsons2011-04-309-23/+23
|
* Was installing libmandoc.a without mandoc.h...Kristaps Dzonsons2011-04-301-0/+2
|
* Move "chars" interface out of out.h and into mandoc.h. This doesn'tKristaps Dzonsons2011-04-2910-72/+65
| | | | | | | | | | change any code but for renaming functions and types to be consistent with other mandoc.h stuff. The reason for moving into libmandoc is that the rendering of special characters is part of mandoc itself---not an external part. From mandoc(1)'s perspective, this changes nothing, but for other utilities, it's important to have these part of libmandoc. Note this isn't documented [yet] in mandoc.3 because there are some parts I'd like to change around beforehand.
* Let mandoc-db grok `St' tokens.Kristaps Dzonsons2011-04-282-5/+25
|
* Closing delimiters only suppress spacing when they follow something.Ingo Schwarze2011-04-251-2/+14
| | | | | Fixing a regression introduced in rev. 1.105. ok and prodding for comments kristaps@.
* User defined macros may invoke high-level macros.Ingo Schwarze2011-04-241-3/+2
| | | | | The latter got lost due to a regression in rev. 1.130. ok kristaps@
* Prevent line breaks right before numbers. Groff does the same.Ingo Schwarze2011-04-242-38/+42
| | | | OK kristaps@.
* Revert last change: this screwed up displaying in other pages (didn'tKristaps Dzonsons2011-04-231-2/+2
| | | | test it enough).
* Make the `Nm' -Thtml attribute be min-width instead of width. This is aKristaps Dzonsons2011-04-231-2/+2
| | | | | | | | quick fix for, say, rc.d(8) in OpenBSD, which has nested macros on the `Nm' SYNOPSIS line that were skipped over by the length calculator. This should [maybe?] be a recursive length check, but still it'd need to be a min-width to accomodate for (say) `Qq' and the like printing excess characters post-length-calculation.
* Add \*(Ai (ANSI) and \*(Px (POSIX) predefined strings, which are part ofKristaps Dzonsons2011-04-203-7/+16
| | | | | | groff's tmac.doc package. Originally noted by Matthew Dempsky. Feedback by Jason McIntyre, joerg@, and schwarze@. Also add some documentation about predefined strings, tweaked by schwarze@.
* Clean up parsing of delimiters in -mdoc. First, remove the "dowarn"Kristaps Dzonsons2011-04-197-204/+173
| | | | | | | | variable from mandoc_getarg() so that it prints the warning every time. Then, remove the warning from args_checkpunct(). This way, warnings are being posted at the correct time. This makes the flag argument to mdoc_zargs() superfluous, so make it be zero when it's invoked. Finally, move the args() flags into mdoc_argv.c and make them enums.
* Add more documentation bits to mandoc.3.Kristaps Dzonsons2011-04-191-2/+74
|
* .Pp in .Bl -columnIngo Schwarze2011-04-171-1/+5
|
* The semantics of .Bk was described incorrectlyIngo Schwarze2011-04-171-4/+5
| | | | | | for the case of multiple sibling macros on a single input line. Issue found investigating a question from sobrado@. "I like this diff" kristaps@
* Use mandoc_getarg() for the regular case of processing unquotedKristaps Dzonsons2011-04-171-20/+4
| | | | arguments in -mdoc documents.
* Get mdoc_argv.c ready to use [some of] mandoc_getarg() by giving saidKristaps Dzonsons2011-04-175-23/+25
| | | | function a parameter to suppress warnings.
* mini-bug at eol after .Bl -column .ItIngo Schwarze2011-04-161-1/+11
|
* lines in tables and .RS/.RE nestingIngo Schwarze2011-04-161-1/+9
|
* Check in fix to roff conditional if/else stack running out of space.Kristaps Dzonsons2011-04-131-34/+25
| | | | | | | This transforms the stack pop to occur prior to body execution, instead of afterward. Floated to tech@ without response, but it makes sense that this is alright and doesn't cause problems during extensive testing.
* Back out commit to roff.c that needs to go in on its own.Kristaps Dzonsons2011-04-131-25/+34
|
* Remove TODO from prior commit of lifting warnings from `Sh', `Ss', `SH',Kristaps Dzonsons2011-04-132-42/+26
| | | | and `SS' bodies.
* Remove the warning for empty bodies of `Sh', `Ss', `SH', and `SS'. ThisKristaps Dzonsons2011-04-132-11/+8
| | | | | | | | | | | prompted by a TODO by schwarze@, originally from Gleydson Soares, that an empty `SS' was raising an error (it hasn't for some time). It makes sense these shouldn't warn, as omitting their contents doesn't change anything in the structure of the document (groff and mandoc specifically account for the whitespace between empty sections). This doesn't change any manuals, which only refer to the line arguments (or possibly next-line, in the case of man(7) syntax).
* empty .SS is okIngo Schwarze2011-04-121-1/+8
|
* Let mandoc-db also collect -man descriptions.Kristaps Dzonsons2011-04-121-6/+26
|
* Updating mandoc-db manual page with new recno contents.Kristaps Dzonsons2011-04-111-5/+14
|
* Update example.style.css to be a bit more readable by default.Kristaps Dzonsons2011-04-111-19/+13
|
* Have mandoc-db accumulate manual page descriptions (`Nd' in -mdoc parlance)Kristaps Dzonsons2011-04-111-30/+80
| | | | | in the index. This allows, with both the btree and index, full emulation of apropos(1) and other goodies.