aboutsummaryrefslogtreecommitdiffstatshomepage
Commit message (Collapse)AuthorAgeFilesLines
* Make sure constants in mandoc.3 use the `Dv' macro.Kristaps Dzonsons2011-07-111-7/+15
|
* Have descriptions for -man documents in makewhatis be properly collected.Kristaps Dzonsons2011-07-101-2/+5
|
* Spaces must be preserved in -T[x]html literal mode.Kristaps Dzonsons2011-07-091-1/+3
|
* Clarify the role of `RS' in man(7) and also fix a bogus cross-reference.Kristaps Dzonsons2011-07-081-7/+10
|
* Make sure that `br' and `sp' don't emit space before the initial `SH' inKristaps Dzonsons2011-07-081-5/+20
| | | | | | -man. This actually seems to be what groff does. Sort-of. Anyway, it's required to get perlpod pages rendered nicely, so until perlpod stops producing shit, do it. Ok schwarze@.
* Fix two issues: the first, where a `.\}' wasn't being interpreted as aKristaps Dzonsons2011-07-081-4/+26
| | | | | | | | proper macro in some conditions, resulting in strange parse errors. The second, where `\}' was being re-written as `\&'. Instead, we re-write this as two spaces OR nothing at all, if at the end of line. This isn't exactly what groff does (who knows...) but is a much safer and better way than how I was doing it before.
* Fix handling of the `\c' escape in -T[x]html.Kristaps Dzonsons2011-07-071-2/+4
|
* Considerably fix up -man -T[x]html's handling of verbatim spaces (`nf'),Kristaps Dzonsons2011-07-071-18/+20
| | | | which before were being handled erratically.
* Clean up how -man -T[x]html handles TP, IP, and HP (dd lists andKristaps Dzonsons2011-07-071-79/+15
| | | | | indented paragraph macros, respectively). This cleans up code and also cleans up the output quite a lot.
* Simplify chars.c---there's really no need for extra code to reorder theKristaps Dzonsons2011-07-071-61/+8
| | | | hash chain or an extra function for checking matches.
* Note the strange `if'+newline issue raised by schwarze@.Kristaps Dzonsons2011-07-071-1/+5
|
* Fix a bug in the -man parser where deleting nodes (such as `PP' or `LP'Kristaps Dzonsons2011-07-071-7/+7
| | | | | | in certain situations) caused the next macros to be assigned as siblings instead of child nodes to the original parent. Noticed and ok by schwarze@.
* Install sources with mode 0644. Noted by Jack Nagel. Ok schwarze@.Kristaps Dzonsons2011-07-041-1/+2
|
* The bufcat() function in -T[x]html was eating one byte off the end of itsKristaps Dzonsons2011-07-042-3/+4
| | | | | | concatenated string. This for some reason hasn't been found before now... ? Anyway, fixed, and make the IDs created again be correctly prefixed by a letter as per the HTML spec.
* Fix a TODO noted by schwarze@, originally by Christian Weisgerber:Kristaps Dzonsons2011-07-034-8/+13
| | | | | literal mode (`nf') is ended by SH (and, it turns out, SS as well). Noted the updated behaviour in man.7 as well.
* two new bugs reported by naddy@:Ingo Schwarze2011-07-031-1/+9
| | | | | - .\} breaks - .SH implies .fi
* We obviously need man.h and mdoc.h installed as mentioned in mandoc.3.Kristaps Dzonsons2011-07-031-1/+1
|
* Added `Er' in ERRORS scan to makewhatis.Kristaps Dzonsons2011-07-012-3/+19
|
* Added search for `Ev' environment variables in ENVIRONMENT section.Kristaps Dzonsons2011-07-012-3/+19
|
* Allow `Nd' scarfed data to allow for non-text nodes as the first node, as well.Kristaps Dzonsons2011-07-011-22/+21
|
* Add some notes to index.sgml. This does not signal a release.Kristaps Dzonsons2011-07-011-36/+13
|
* Make scan for text tokens in a line recursive. This is really only forKristaps Dzonsons2011-07-011-35/+39
| | | | | the benefit of `Nd', which is the only [to date] node that can consist of sub-nodes.
* Add path reference (`Pa' in FILES section).Kristaps Dzonsons2011-07-012-4/+23
|
* Ouch: predefined strings moved into roff.c weren't being reinitalisedKristaps Dzonsons2011-06-302-2/+9
| | | | | after the first parse. Do this, but note there are more efficient ways just waiting for a table of macros.
* First fix how `sp 1' doesn't imply `1v' (it now does) and that 1Kristaps Dzonsons2011-06-295-13/+21
| | | | | | followed by non-digits, e.g. `1g', really means `1'. Next, fix some spacing issues where `sp' was invoked in -man after sections or subsections. Make sure this behaviour is mirrored in -Thtml.
* Add cross-reference records to makewhatis.Kristaps Dzonsons2011-06-252-4/+29
|
* Add more documentation for libmandoc.Kristaps Dzonsons2011-06-221-8/+53
|
* Clean up makewhatis.c a little bit and add verbosity (-v).Kristaps Dzonsons2011-06-222-32/+45
|
* Make sure hash is initialised to NULL and remove an unused variable.Kristaps Dzonsons2011-06-221-3/+3
|
* Try again to get the transfer from hash to btree working. This timeKristaps Dzonsons2011-06-221-18/+19
| | | | | | | just closing and re-opening the database, as deleting records with (*hash->del) either in the scan loop or after it causes uncertain behaviour (left-over keys, mystery keys, etc.). This finally does the Right Thing (tm).
* Fix broken transfer from hashtable to btree for makewhatis.c.Kristaps Dzonsons2011-06-211-12/+11
|
* Note mandoc-cgi -> mandoc-tools.Kristaps Dzonsons2011-06-211-2/+4
|
* Let descriptions (bit-mask 0x100) also be mined for text. This doublesKristaps Dzonsons2011-06-213-8/+21
| | | | | the database size (one record for each file), but it's critical information.
* Have descriptions also use struct buf. This completes the internalKristaps Dzonsons2011-06-211-111/+53
| | | | migration to in-memory hashing and passing buffers instead of DBTs.
* Don't let empty strings into the makewhatis keyword database.Kristaps Dzonsons2011-06-212-3/+4
|
* Make sure makewhatis.1 is documenting the correct bit-fields.Kristaps Dzonsons2011-06-211-14/+11
|
* Big change to makewhatis: use an in-memory hashtable to collapseKristaps Dzonsons2011-06-211-130/+184
| | | | | | multiple types of the same name (e.g., "foo" being a manual name, utility name, etc.) into a single bitmask'd region. This considerably reduces the size of the keyword database.
* Make -T[x]html in -man also be aware of the vertical-space issues in theKristaps Dzonsons2011-06-181-5/+29
| | | | last few commits.
* Fix two TODOs with one check-in. Both of these relate to vertical spaceKristaps Dzonsons2011-06-183-36/+18
| | | | before paragraphs and/or within `RS' blocks.
* Allow RS/RE blocks to nest. This requires first the syntax tree toKristaps Dzonsons2011-06-183-30/+23
| | | | | | | | accomodate for the fix, then for the front-ends. -T[x]html accepted the syntax tree natively, but -Tascii had to use relative offsets. It's quite a simple fix. From a TODO by {dcoppa,dsoares}@openbsd.
* Add back in a check that the leading `-' exists for arguments. ThisKristaps Dzonsons2011-06-181-7/+6
| | | | | mysteriously disappeared in 1.14. No idea why. While here, remove an unnecessary header and order the function prototypes.
* Clean-up: remove a function only called once.Kristaps Dzonsons2011-06-181-38/+17
|
* Fix an assertion failure raised by the following interesting scenario: aKristaps Dzonsons2011-06-182-196/+165
| | | | | | | | | | | | | | auto-opened `It' (i.e., a column list with a free-text first line) with leading spaces in the line triggering assertion when searching for arguments. This led to a fix giving a nice performance speed-ups (a few percent, with some quick trials): the search for flags immediately exits if the macro has no flags, instead of having to first parse the leading word then look it up. I also cleaned up the argv parsing stuff a little bit and added more documentation. This comes from a TODO by joerg@.
* Have -T[x]html print out the link target for `Lk' if no link title isKristaps Dzonsons2011-06-161-4/+5
| | | | provided. From a patch by Tim van der Molen.
* Add note about crash on invalid found in the NetBSD treeJoerg Sonnenberger2011-06-121-1/+4
|
* .Nm in-line/block issues reported by uqs@Ingo Schwarze2011-06-111-1/+9
|
* Fix some bad bits in the mandoc manual: `Xr' instead of `Sx', unescapedKristaps Dzonsons2011-05-301-10/+9
| | | | | stuff that should be escaped, and a style matter or two. Pointed out by Jason McIntyre, thanks!
* Remove untrue CAVEAT in makewhatis.1.Kristaps Dzonsons2011-05-261-6/+2
|
* Version 1.11.3. Here we go!VERSION_1_11_3Kristaps Dzonsons2011-05-262-5/+5
|
* Some small lint checks in preconv. Also add it to the default lint rule.Kristaps Dzonsons2011-05-262-7/+7
|