]> git.cameronkatri.com Git - mandoc.git/log
mandoc.git
11 years agoThe name "struct tbl" was badly misleading for two reasons:
Ingo Schwarze [Fri, 31 May 2013 21:37:17 +0000 (21:37 +0000)]
The name "struct tbl" was badly misleading for two reasons:
1) This struct almost exclusively contains the table options.
2) Information about the table as a whole is actually in "struct tbl_node".
Besides, "struct tbl" was almost impossible to search for.
So rename it to "struct tbl_opts".  No functional change.

11 years agoReject non-printable characters found in the input stream even when
Ingo Schwarze [Thu, 30 May 2013 03:52:59 +0000 (03:52 +0000)]
Reject non-printable characters found in the input stream even when
preceded by a backslash; otherwise, the escape sequence would later
be identified as invalid and the non-printable character would be
passed through to the output backends, sometimes triggering assertions.

Reported by Mike Small <smallm at panix dot com> on the mdocml discuss list.

11 years agoSync to OpenBSD:
Ingo Schwarze [Wed, 29 May 2013 22:48:10 +0000 (22:48 +0000)]
Sync to OpenBSD:
* Guard <sys/param.h> inclusion by #ifdef USE_MANPATH
  to make it more obvious why this isn't needed on OpenBSD.
  Noticed by deraadt@.
* Resolve gratuitious whitespace differences:
  Blanks before tabs and on empty lines.

11 years agoSimplify condition, avoid duplicate code; no functional change.
Ingo Schwarze [Wed, 29 May 2013 16:11:40 +0000 (16:11 +0000)]
Simplify condition, avoid duplicate code; no functional change.

11 years agoIn SYNOPSIS mode, .Ek doesn't end a keep.
Ingo Schwarze [Wed, 29 May 2013 15:40:22 +0000 (15:40 +0000)]
In SYNOPSIS mode, .Ek doesn't end a keep.
Found and fixed on the plane to the OpenBSD t2k13 hackathon in Toronto.

11 years agoIn keep mode, if any text is printed (even in NOSPACE mode),
Ingo Schwarze [Wed, 29 May 2013 15:17:52 +0000 (15:17 +0000)]
In keep mode, if any text is printed (even in NOSPACE mode),
any text that follows must be kept on the same line.

I already found the issue and wrote the patch in April 2011,
but didn't come round to do proper testing and forgot about it.

11 years agoSupport .Bl -offset in -mdoc -Tman.
Ingo Schwarze [Sun, 19 May 2013 21:40:24 +0000 (21:40 +0000)]
Support .Bl -offset in -mdoc -Tman.
Issue found when Thomas Klausner <wiz at NetBSD dot org> made me
look at the manuals of his http://www.nih.at/libzip library.

11 years agoMove printing of the .RS macro into print_offs() such that print_offs()
Ingo Schwarze [Sun, 19 May 2013 21:07:51 +0000 (21:07 +0000)]
Move printing of the .RS macro into print_offs() such that print_offs()
takes care of printing the whole line.  This reduces code duplication -
in particular after the upcoming commit to repair .Bl -offset -
and makes print_offs() more similar to what print_width() does.
No functional change.

11 years agoShould termp_xx_pre() ever get called for a macro it cannot handle,
Ingo Schwarze [Sat, 18 May 2013 17:47:47 +0000 (17:47 +0000)]
Should termp_xx_pre() ever get called for a macro it cannot handle,
use abort(3), just like in the three other comparable cases in this file,
instead of ignoring the problem and causing a null pointer access.
Cosmetical issue reported by Ulrich Spoerlein <uqs@spoerlein.net>
found by Coverity Scan CID 976115.
No functional change.

11 years agoRemove the variable sz because it's invariantly == 0,
Ingo Schwarze [Sat, 18 May 2013 17:08:43 +0000 (17:08 +0000)]
Remove the variable sz because it's invariantly == 0,
along with the dead code testing whether it's positive.
Reported by Ulrich Spoerlein <uqs@spoerlein.net>,
found by Coverity Scan CID 975717.

While here, remove the now unused **params array as well,
which Coverity apparently missed, at least it wasn't reported...

11 years agoEven though the size of a pointer should not depend on the type of the
Ingo Schwarze [Sat, 18 May 2013 16:40:15 +0000 (16:40 +0000)]
Even though the size of a pointer should not depend on the type of the
data pointed to, pass the size of the right pointer type to calloc;
cosmetic issue reported by Ulrich Spoerlein <uqs@spoerlein.net>
found in Coverity Scan CID 978734.
No binary change - ok cmp(1).

11 years ago- (mdoc.7) fix Xr to self
Ingo Schwarze [Sun, 28 Apr 2013 07:54:01 +0000 (07:54 +0000)]
- (mdoc.7) fix Xr to self
- double word fix
from jmc@

11 years agoCavium Octeon (new architecture in OpenBSD); from jmc@.
Ingo Schwarze [Wed, 27 Mar 2013 00:19:26 +0000 (00:19 +0000)]
Cavium Octeon (new architecture in OpenBSD); from jmc@.

11 years agolegancy -> legacy; reported by Chris Hettrick
Ingo Schwarze [Wed, 6 Mar 2013 08:08:24 +0000 (08:08 +0000)]
legancy -> legacy; reported by Chris Hettrick

12 years agoIn literal mode (.nf), each input line must be kept together
Ingo Schwarze [Sat, 5 Jan 2013 22:19:12 +0000 (22:19 +0000)]
In literal mode (.nf), each input line must be kept together
on the same output line, even if it is longer than the output width.
This commit fixes a bug allowing an overly long last line of an
indented block (.RS) to be broken even in literal mode.

The bug was found using the sudo_plugin(4) manual provided by millert@.

I introduced the bug in rev. 1.84 during the g2k12 Budapest hackathon.

12 years agoRewrite indentation handling for nested lists in a more systematic way
Ingo Schwarze [Mon, 31 Dec 2012 22:34:48 +0000 (22:34 +0000)]
Rewrite indentation handling for nested lists in a more systematic way
to fix multiple issues reported by Todd Miller; thanks!

Specifically,
 - avoid double indentation after .Bd inside .Bl
 - set up correct indentation after .Bl inside .Bl
 - set up correct indentation after .Dl and .D1 inside .Bl

While here, also
 - set up correct indentation *inside* .Dl and .D1 inside .Bl.

12 years agoDo not crash on stray .Ta macros found outside column lists.
Ingo Schwarze [Mon, 19 Nov 2012 22:30:58 +0000 (22:30 +0000)]
Do not crash on stray .Ta macros found outside column lists.
Problem reported by jmc@, thanks.

12 years agoIn groff, trying to redefine standard man(7) macros before .TH has no effect;
Ingo Schwarze [Mon, 19 Nov 2012 17:57:23 +0000 (17:57 +0000)]
In groff, trying to redefine standard man(7) macros before .TH has no effect;
after .TH, it works.  Trying to redefine standard mdoc(7) macros before .Dd
works when calling groff with the -mdoc command line option, but does not
when calling groff with -mandoc; after .Dd, it always works.

Arguably, one might call that buggy behaviour in groff, but it is very
unlikely that anybody will change groff in this respect (certainly, i'm
not volunteering).  So let's be bug-compatible.

This fixes the vertical spacing in sox(1).

Merging from OpenBSD libmandoc.h 1.18, read.c 1.8, roff.c 1.47, June 2, 2012.

12 years agosync usage(), and tidy up the output a little; from jmc@
Ingo Schwarze [Mon, 19 Nov 2012 17:22:26 +0000 (17:22 +0000)]
sync usage(), and tidy up the output a little; from jmc@

12 years agoIn -Tman mode, support automatic word keeps in the SYNOPSIS
Ingo Schwarze [Mon, 19 Nov 2012 02:14:45 +0000 (02:14 +0000)]
In -Tman mode, support automatic word keeps in the SYNOPSIS
just like in -Tascii mode; requested by millert@.

While here, do not escape the blank characters terminating man(7)
macros; this is becoming more important as we use more keeps now.

Note that -Tman still does not support .nr nS.

12 years agoThree portability improvements by millert@:
Ingo Schwarze [Mon, 19 Nov 2012 02:08:33 +0000 (02:08 +0000)]
Three portability improvements by millert@:
* Use "\\ " not "\\~" as the non-breaking space as historic nroff
doesn't support the latter.
* The '-' before the flags needs to be quoted to prevent nroff
from putting a line break between the '-' and the flag character.
* Disable hyphenation and, for nroff, disable justification which is
consistent with how mdoc behaves (and produces more readable manuals).

(OpenBSD rev. 1.39, 1.40 and 1.41)

12 years agoMake the generated man(7) code more portable by using .PD
Ingo Schwarze [Sun, 18 Nov 2012 19:34:19 +0000 (19:34 +0000)]
Make the generated man(7) code more portable by using .PD
instead of .sp -1v, which for example Solaris nroff handles poorly.

Problem report and patch by millert@,
with the print_word chunk tweaked by me.

12 years agoCorrect indentation for lists and displays inside lists.
Ingo Schwarze [Sun, 18 Nov 2012 18:02:23 +0000 (18:02 +0000)]
Correct indentation for lists and displays inside lists.

Inspired by a diff from millert@, but implemented rather
differently and with slightly better functionality.
In particular, this one respects -offset and -width
arguments found in the input file.

12 years agoFix four small whitespace issues related to trailing punctuation
Ingo Schwarze [Sun, 18 Nov 2012 00:05:35 +0000 (00:05 +0000)]
Fix four small whitespace issues related to trailing punctuation
reported by Nicolas Joly <njoly at pasteur dot fr>:

- add EOS spacing after trailing punctuation after .Cd, .Fc, and .Lb
- suppress spacing before trailing punctuation after .Fd

Add the remaining issues from the same report to the TODO file.

12 years agoCleanup naming of local variables to make the code easier on the eye:
Ingo Schwarze [Sat, 17 Nov 2012 00:26:33 +0000 (00:26 +0000)]
Cleanup naming of local variables to make the code easier on the eye:
Settle for "struct man *man", "struct mdoc *mdoc", "struct meta *meta"
and avoid the confusing "*m" which was sometimes this, sometimes that.
No functional change.

ok kristaps@ some time ago

12 years agoWarn about unknown volume or arch in Dt macro arguments;
Ingo Schwarze [Fri, 16 Nov 2012 22:21:05 +0000 (22:21 +0000)]
Warn about unknown volume or arch in Dt macro arguments;
patch written by Nicolas Joly <njoly at pasteur dot fr>.

12 years agoEnd of sentence spacing after trailing punctuation after .In and .Ap
Ingo Schwarze [Fri, 16 Nov 2012 18:44:32 +0000 (18:44 +0000)]
End of sentence spacing after trailing punctuation after .In and .Ap
has just been fixed.  Note that my problem description was somewhat
misleading, even though Nicolas Joly's problem report was fine.

12 years agoTwo more macros (.Ap and .In) do trailing delimiter handling.
Ingo Schwarze [Fri, 16 Nov 2012 18:41:18 +0000 (18:41 +0000)]
Two more macros (.Ap and .In) do trailing delimiter handling.
This fixes the end of sentence spacing in OpenBSD open(2)
and in about 150 pages in the NetBSD base system.

Reported by Nicolas Joly <njoly a pasteur point fr>, merci!

12 years agoImprove formatting of badly nested font blocks.
Ingo Schwarze [Fri, 16 Nov 2012 17:16:55 +0000 (17:16 +0000)]
Improve formatting of badly nested font blocks.
The basic idea is to already pop the font at the end marker
instead of allowing it to linger until the final end of the block.

This requires a few preliminaries:
* For each block, save a pointer to the previous font
  to be used in case the block breaks another and gets extended.
* That requires making node information writable during rendering.
* Now fonts may get popped in the wrong order; hence, after the stack
  has already been rewound further by some block that began earlier,
  ignore popping a font that was put on the stack later.
* To be able to exploit all this for font blocks, tie processing
  to their body, not their block, which is more logical anyway.

Triggered by florian@ reporting vaguely similar issues with list blocks.

12 years agoFix a crash triggered by .Bl -tag .It Xo .El .Sh found by florian@.
Ingo Schwarze [Fri, 16 Nov 2012 13:40:36 +0000 (13:40 +0000)]
Fix a crash triggered by .Bl -tag .It Xo .El .Sh found by florian@.

* When allocating a body end marker, copy the pointer to the normalized
block information from the body block, avoiding the risk of subsequent
null pointer derefence.
* When inserting the body end marker into the syntax tree, do not try to
copy that pointer from the parent block, because not being a direkt child
of the block it belongs to is the whole point of a body end marker.
* Even non-callable blocks (like Bd and Bl) can break other blocks;
when this happens, postpone closing them out in the usual way.

Completed and tested at the OpenBSD impromptu Coimbra hackathon (c2k12).
Thanks to Pedro Almeida and the Laborat'orio de Computa,c~ao Avan,cada
da Universidade de Coimbra (http://www.uc.pt/lca) for their hospitality!

12 years agocrash caused by .Ta outside .Bl
Ingo Schwarze [Sun, 4 Nov 2012 18:58:15 +0000 (18:58 +0000)]
crash caused by .Ta outside .Bl

12 years agofreeciv wants .UR/.UE too; from bentley@
Ingo Schwarze [Wed, 31 Oct 2012 09:20:23 +0000 (09:20 +0000)]
freeciv wants .UR/.UE too; from bentley@

12 years agominor EOS issue reported by Nicolas Joly
Ingo Schwarze [Fri, 12 Oct 2012 16:45:34 +0000 (16:45 +0000)]
minor EOS issue reported by Nicolas Joly

12 years ago1) Remove documentation of the groff-1.15 compatibility quirk
Ingo Schwarze [Wed, 29 Aug 2012 23:38:50 +0000 (23:38 +0000)]
1) Remove documentation of the groff-1.15 compatibility quirk
of suppressing spacing before a third .Xr argument
because that quirk was removed in mdoc_macro.c rev. 1.113.

2) Mark the "section" argument to .Xr as (syntactically) optional,
but still do not encourage omitting it.
The missing .Op was reported by espie@.

Wording tweaked by and ok jmc@, ok millert@.

12 years ago.Sq should use curly right quotes in HTML output to match its curly
Ingo Schwarze [Sun, 12 Aug 2012 10:04:09 +0000 (10:04 +0000)]
.Sq should use curly right quotes in HTML output to match its curly
left quotes.

Also, properly reinitialize the styles attribute string buffer for
each column in a table so that the attributes don't accumulate.

Patch from Matthew@ Dempsky, tweaked by me; OpenBSD rev. 1.66.

12 years agodocument .PD; related to man_term.c rev. 1.134
Ingo Schwarze [Sun, 29 Jul 2012 13:37:20 +0000 (13:37 +0000)]
document .PD; related to man_term.c rev. 1.134
OpenBSD man.7 rev. 1.30

12 years agoImplement .PD for -Tascii.
Ingo Schwarze [Sun, 29 Jul 2012 12:35:42 +0000 (12:35 +0000)]
Implement .PD for -Tascii.
Reminded about the missing feature by millert@.
This reduces mandoc/groff differences in OpenBSD base by 25%.
ok millert@

12 years agoDrop empty .IP such that is does not cause additional vertical spacing.
Ingo Schwarze [Wed, 18 Jul 2012 16:52:03 +0000 (16:52 +0000)]
Drop empty .IP such that is does not cause additional vertical spacing.
Issue first reported by naddy@ in rsync(1).
OpenBSD rev. 1.55.

12 years agoDrop .sp and .br right after .SH and .SS.
Ingo Schwarze [Wed, 18 Jul 2012 16:41:09 +0000 (16:41 +0000)]
Drop .sp and .br right after .SH and .SS.

Fixes vertical spacing after "OPTIONS" in gcc(1).
Issue first reported by naddy@ in rsync(1).

OpenBSD rev. 1.54.

12 years agoLet a trailing .Ns macro take effect
Ingo Schwarze [Wed, 18 Jul 2012 16:20:43 +0000 (16:20 +0000)]
Let a trailing .Ns macro take effect
even on an input line containing a partial implicit macro.

Fixes horizontal spacing in vi(1), ddb(4), and ppp(8).

OpenBSD rev. 1.74.

12 years agoFix handling of paragraph macros inside lists:
Ingo Schwarze [Wed, 18 Jul 2012 11:11:12 +0000 (11:11 +0000)]
Fix handling of paragraph macros inside lists:
* When they are trailing the last item, move them outside the list.
* When they are trailing any other none-compact item, drop them.

OpenBSD rev. mdoc_validate.c 1.107, mdoc.c 1.91

12 years agoThe mdoc(7) \*(Ba predefined string actually forces roman font;
Ingo Schwarze [Wed, 18 Jul 2012 10:39:19 +0000 (10:39 +0000)]
The mdoc(7) \*(Ba predefined string actually forces roman font;
that's stupid because it may break enclosing font changes,
but let's do the same for groff bug compatibility.

--> Never use \*(Ba, use just plain "|"! <--

Also, predefined strings are already expanded by the roff(7) parser,
so the mdoc(7) parser has to look for the expanded string.

OpenBSD rev. mdoc.c 1.90 and predefs.in 1.3

12 years agoAlways fix the man(7) subsection header (.SS) indent to 3n,
Ingo Schwarze [Mon, 16 Jul 2012 21:59:40 +0000 (21:59 +0000)]
Always fix the man(7) subsection header (.SS) indent to 3n,
do not let it depend on the default indent provided by -Oindent.
By default, this doesn't change anything because 7 / 2 = 3;
in -Omdoc mode, it makes man(7) output the same as mdoc(7) output.
OpenBSD rev. 1.87

12 years agoIn flush-left mode of both man(7) and mdoc(7), when an output line is broken
Ingo Schwarze [Mon, 16 Jul 2012 21:30:42 +0000 (21:30 +0000)]
In flush-left mode of both man(7) and mdoc(7), when an output line is broken
at the position of a literal tab, the tab indents the following line.
Fixes the perl(1) SYNOPSIS; reminded by deraadt@; OpenBSD rev. 1.66.

12 years agoFor .El .sp, avoid the weird .sp -1v .PP .PP output sequence.
Ingo Schwarze [Mon, 16 Jul 2012 10:45:41 +0000 (10:45 +0000)]
For .El .sp, avoid the weird .sp -1v .PP .PP output sequence.
Synching to OpenBSD rev. 1.38.

12 years agoSeveral -mdoc parser improvements related to vertical spacing:
Ingo Schwarze [Mon, 16 Jul 2012 09:51:54 +0000 (09:51 +0000)]
Several -mdoc parser improvements related to vertical spacing:
* So far, .Pp and .Lp were removed before paragraph type blocks.
* Now also remove .br before paragraph type blocks.
* Treat .Lp as a paragraph like .Pp, so remove .Pp, .Lp, .br before it.
* Do not treat .sp as a paragraph, don't remove anything before it.
* After .Sh, .Ss, .Pp, and .Lp, remove .Pp, .Lp, .sp, .br, and blank lines.
* After .sp and .br, remove .br.
OpenBSD rev. mdoc.c 1.89 and mdoc_validate.c 1.106

12 years agoTranslate blank input lines to .sp just like in mdoc(7),
Ingo Schwarze [Sat, 14 Jul 2012 10:47:07 +0000 (10:47 +0000)]
Translate blank input lines to .sp just like in mdoc(7),
and ignore .sp after .PP.  This fixes vertical spacing
for blank lines after .PP and for .sp after .PP.
OpenBSD rev. man.c 1.68 and man_term.c 1.86

12 years agoIn -Tman .Bl -compact, skip the blank line only before the first item
Ingo Schwarze [Sat, 14 Jul 2012 09:07:18 +0000 (09:07 +0000)]
In -Tman .Bl -compact, skip the blank line only before the first item
of the first list in a section, not before every item of the first list.
OpenBSD rev. 1.37

12 years agoAdjust -Tman SYNOPSIS .Nm indentation using .HP; requested by millert@.
Ingo Schwarze [Fri, 13 Jul 2012 23:57:58 +0000 (23:57 +0000)]
Adjust -Tman SYNOPSIS .Nm indentation using .HP; requested by millert@.
There are still lots of ugly line breaks, to be fixed later.
OpenBSD rev. 1.36

12 years agoIf the tag in .Bl -tag .It would leave exactly one blank before the
Ingo Schwarze [Fri, 13 Jul 2012 20:43:40 +0000 (20:43 +0000)]
If the tag in .Bl -tag .It would leave exactly one blank before the
body of the item, mdoc(7) breaks the line, whereas the .TP used to
translate this to man(7) does not.  Thus, insert an explicit roff(7)
line break in this place.
To be able to correctly count the characters, do not pass font escapes
an the like through print_word().
OpenBSD rev. 1.35

12 years agoIn -man -Tascii, support .sp with negative argument.
Ingo Schwarze [Fri, 13 Jul 2012 14:19:49 +0000 (14:19 +0000)]
In -man -Tascii, support .sp with negative argument.
In -mdoc -Tman, improve the framework to control vertical spacing.
Use both to support .Bl -compact (surprisingly hard to get right).
OpenBSD rev. 1.85 and 1.34, respectively.

12 years agoThe post_nm() validation function crashed when the first .Nm child node
Ingo Schwarze [Thu, 12 Jul 2012 15:11:14 +0000 (15:11 +0000)]
The post_nm() validation function crashed when the first .Nm child node
was a non-text node.  Fix this by rewriting post_nm() to always set
the meta name to UNKNOWN when the name is missing or unusable.
While here, make MANDOCERR_NONAME an ERROR, as it usually renders
the page content unintelligible.

Bug reported by Maxim <Belooussov at gmail dot com>, thanks.
OpenBSD rev. 1.105

12 years agoDo not crash in -Tman on:
Ingo Schwarze [Thu, 12 Jul 2012 08:55:48 +0000 (08:55 +0000)]
Do not crash in -Tman on:
* .Fn with exactly one argument
* .Bl -hang without a -width
Now all 3776 OpenBSD base manuals build without crashing.
OpenBSD rev. 1.33

12 years agoPolish -Tman .Rs support.
Ingo Schwarze [Wed, 11 Jul 2012 23:46:37 +0000 (23:46 +0000)]
Polish -Tman .Rs support.
All mdoc(7) macros are now supported by -Tman.
OpenBSD rev. 1.32

12 years agofix position and formatting of %U;
Ingo Schwarze [Wed, 11 Jul 2012 16:57:43 +0000 (16:57 +0000)]
fix position and formatting of %U;
OpenBSD rev. 1.104 and 1.145, respectively

12 years agobasic implementation of -Tman .Bl -column using tbl(7); OpenBSD rev. 1.31
Ingo Schwarze [Wed, 11 Jul 2012 16:19:08 +0000 (16:19 +0000)]
basic implementation of -Tman .Bl -column using tbl(7); OpenBSD rev. 1.31

12 years agobasic implementation of -Tman .Bl -tag
Ingo Schwarze [Tue, 10 Jul 2012 20:37:02 +0000 (20:37 +0000)]
basic implementation of -Tman .Bl -tag
while here, do some minor outflags cleanup
OpenBSD rev. 1.30

12 years agomultiple fixes to -Tascii .HP rendering:
Ingo Schwarze [Tue, 10 Jul 2012 19:54:11 +0000 (19:54 +0000)]
multiple fixes to -Tascii .HP rendering:
* do not add an excessive blank line before the block
* in literal mode, start a new line after the tag

getting this to work requires some general (print_man_node) fixes:
* in literal mode, break the output line at the end of each
input line, not just after those input lines ending in text
* but don't break it when there was no output on the line
* and adjust the margins after the .HP tag

these general fixes require an adjustment to -Tascii .TP rendering:
* set up NOBREAK mode before the body, not after the head

finally, based on all this, implement -Tman .Bl -hang in terms of .HP

OpenBSD rev. 1.84 and 1.29, respectively

12 years agoRemove a hack that was intended for groff-1.15 bug compatibility:
Ingo Schwarze [Tue, 10 Jul 2012 15:35:41 +0000 (15:35 +0000)]
Remove a hack that was intended for groff-1.15 bug compatibility:
When the width of a tag in .Bl -hang was exactly one character
shorter than the maximum length that would fit, the following text
would have a negative hang of one character (i.e., hang to the left).
That bug is no longer present in groff-1.21, so relax mandoc, too.
OpenBSD rev. 1.65

12 years ago* implement -Tman .Bl -item -inset -diag -ohang -dash -hyphen -enum .It
Ingo Schwarze [Tue, 10 Jul 2012 14:38:51 +0000 (14:38 +0000)]
* implement -Tman .Bl -item -inset -diag -ohang -dash -hyphen -enum .It
* fix -Tman .Bl -bullet .It
* adjust the -Tascii .Bl -bullet -dash -hyphen .It
default and minimum width to new groff standards,
it changed from 4n (in groff 1.15) to 2n (in groff 1.21)
* same for -Tascii -enum, it changed from 5n to 2n
* use -hang formatting for -Tascii -enum -width 2n
* for -Tascii -enum, the default is -width 3n

12 years agofix -Tascii .Fd line breaking
Ingo Schwarze [Mon, 9 Jul 2012 23:53:36 +0000 (23:53 +0000)]
fix -Tascii .Fd line breaking
and implement -Tman .Fd
OpenBSD rev. 1.27 and 1.143, respectively

12 years agoimplement -Tman .Eo and .Ec; OpenBSD rev. 1.26
Ingo Schwarze [Mon, 9 Jul 2012 22:36:34 +0000 (22:36 +0000)]
implement -Tman .Eo and .Ec; OpenBSD rev. 1.26

12 years agoImplement -Tman .Bf.
Ingo Schwarze [Mon, 9 Jul 2012 18:56:12 +0000 (18:56 +0000)]
Implement -Tman .Bf.
To get the spacing right,
* avoid man(7) code line breaks at places where no spacing is allowed
* allow spacing right after .Sm on
* allow spacing after empty .Fl at the end of an input line
OpenBSD rev. 1.25

12 years agofix -Tman font handling for:
Ingo Schwarze [Mon, 9 Jul 2012 17:53:01 +0000 (17:53 +0000)]
fix -Tman font handling for:
.Ad .Ar .Cd .Cm .Dv .Em .Er .Ev .Fa .Fl .Fn .Fo .Ft
.Ic .In .Lk .Li .Ms .Mt .Nm .Pa .Sx .Sy .Tn .Va .Vt
OpenBSD rev. 1.24

12 years agoimplement -Tman .No and .Mt; OpenBSD rev. 1.23
Ingo Schwarze [Mon, 9 Jul 2012 09:31:48 +0000 (09:31 +0000)]
implement -Tman .No and .Mt; OpenBSD rev. 1.23

12 years agofix .Lk for -Tascii and implement it for -Tman
Ingo Schwarze [Sun, 8 Jul 2012 22:49:29 +0000 (22:49 +0000)]
fix .Lk for -Tascii and implement it for -Tman
OpenBSD rev. 1.22 and 1.142, respectively

12 years agofix vertical spacing for -Tman SYNOPSIS .Fn .Fo .Ft .In .Nm .Va .Vt
Ingo Schwarze [Sun, 8 Jul 2012 18:39:47 +0000 (18:39 +0000)]
fix vertical spacing for -Tman SYNOPSIS .Fn .Fo .Ft .In .Nm .Va .Vt
OpenBSD rev. 1.21

12 years agoimplement -Tman .An
Ingo Schwarze [Sun, 8 Jul 2012 16:52:20 +0000 (16:52 +0000)]
implement -Tman .An
also reset -[no]split mode at .Sh AUTHORS in -Tascii
OpenBSD rev. 1.20 and 1.141, respectively

12 years agoAdd flags to insert a .sp or .br request before the next output,
Ingo Schwarze [Sun, 8 Jul 2012 15:48:13 +0000 (15:48 +0000)]
Add flags to insert a .sp or .br request before the next output,
shortening some frequent idioms and preparing for better vertical
spacing in the SYNOPSIS; no functional change intended.
OpenBSD rev. 1.19

12 years agoInstead of adding one integer variable for each global boolean output flag
Ingo Schwarze [Sun, 8 Jul 2012 15:01:57 +0000 (15:01 +0000)]
Instead of adding one integer variable for each global boolean output flag
and passing around a structure containing them into each and every function,
just use a single static bitfield.
In preparation for adding more output flags to support more features.
OpenBSD rev. 1.18

12 years agoimplement -Tman .Va
Ingo Schwarze [Sun, 8 Jul 2012 13:57:53 +0000 (13:57 +0000)]
implement -Tman .Va
and fix -Tman .Vt for the non-SYNOPSIS case
OpenBSD rev. 1.17

12 years agoimplement -Tman .Vt; OpenBSD rev. 1.15 and 1.16
Ingo Schwarze [Sun, 8 Jul 2012 11:10:13 +0000 (11:10 +0000)]
implement -Tman .Vt; OpenBSD rev. 1.15 and 1.16

12 years agoBasic implementation of -Tman .Fo and .Fa;
Ingo Schwarze [Sun, 8 Jul 2012 10:19:37 +0000 (10:19 +0000)]
Basic implementation of -Tman .Fo and .Fa;
again, some blank lines still missing from the output.
While here, remove the trailing semicolon
from .Fn when outside .Sh SYNOPSIS.
OpenBSD rev. 1.14

12 years agorudimentary support for -Tman .Ft and .Fn;
Ingo Schwarze [Sat, 7 Jul 2012 21:16:35 +0000 (21:16 +0000)]
rudimentary support for -Tman .Ft and .Fn;
some blank lines are still missing from the output
OpenBSD rev. 1.13

12 years agobasic support for -Tman .In; OpenBSD rev. 1.12
Ingo Schwarze [Sat, 7 Jul 2012 20:36:18 +0000 (20:36 +0000)]
basic support for -Tman .In; OpenBSD rev. 1.12

12 years agoafter .Lb in library section, break the line in the final output
Ingo Schwarze [Sat, 7 Jul 2012 14:05:40 +0000 (14:05 +0000)]
after .Lb in library section, break the line in the final output

12 years agoimplement -Tman .Bk; OpenBSD rev. 1.10
Ingo Schwarze [Sat, 7 Jul 2012 13:57:19 +0000 (13:57 +0000)]
implement -Tman .Bk; OpenBSD rev. 1.10

12 years agoimplement -Tman .Sm; OpenBSD rev. 1.9
Ingo Schwarze [Sat, 7 Jul 2012 13:53:14 +0000 (13:53 +0000)]
implement -Tman .Sm; OpenBSD rev. 1.9

12 years agoimplement -Tman .Bd -offset and -compact; OpenBSD rev. 1.8
Ingo Schwarze [Sat, 7 Jul 2012 13:46:59 +0000 (13:46 +0000)]
implement -Tman .Bd -offset and -compact; OpenBSD rev. 1.8

12 years agominor -mdoc -Tman fixes
Ingo Schwarze [Sat, 7 Jul 2012 13:37:42 +0000 (13:37 +0000)]
minor -mdoc -Tman fixes
* right after .Ns, avoid breaking the line in man code
* after .Fl without arguments, do not insert a blank into man code
* before each .Nm in .Sh SYNOPSIS, insert a .br into man code
* skip .Pp arguments, don't copy them to man code

OpenBSD rev. 1.7

12 years agoWhen i moved some low-level stuff from mdoc(7) and man(7)
Ingo Schwarze [Wed, 20 Jun 2012 22:06:30 +0000 (22:06 +0000)]
When i moved some low-level stuff from mdoc(7) and man(7)
to roff(7) some time ago, i forgot to adjust the cross-references.
Reported by Tim van der Molen <tbvdm at xs4all dot nl>, thanks.

ok jmc@

12 years agoAdd `cc' support.
Kristaps Dzonsons [Tue, 12 Jun 2012 20:21:04 +0000 (20:21 +0000)]
Add `cc' support.
This was reported by espie@ and in the TODO.
Caveat: `cc' has buggy behaviour when invoked in groff(1) and followed
by a line-breaking control character macro, e.g., in a -man doc,

  .cc |
  .B foo
  'B foo
  |cc
  'B foo

will cause groff(1) to behave properly for `.B' but inline the macro
definition for `B' when invoked with the line-breaking macro.

12 years agoFix typo (back-space -> backslash).
Kristaps Dzonsons [Tue, 12 Jun 2012 19:50:50 +0000 (19:50 +0000)]
Fix typo (back-space -> backslash).

12 years agoFix an assert() raised by `RS' when following `TP'.
Kristaps Dzonsons [Tue, 12 Jun 2012 12:47:14 +0000 (12:47 +0000)]
Fix an assert() raised by `RS' when following `TP'.
The reason was that `RS' wasn't BSCOPE'd, so the next-line (BLINE) scope
opened by `TP' would still be in the HEAD macro.
This was from joerg@'s archive of failures.

12 years agoAllow compilation on Mac OSX.
Kristaps Dzonsons [Sat, 9 Jun 2012 17:49:13 +0000 (17:49 +0000)]
Allow compilation on Mac OSX.

12 years agoStop producing xhtml/pdf/etc for webpage (logs indicate that nobody actually
Kristaps Dzonsons [Sat, 9 Jun 2012 14:19:55 +0000 (14:19 +0000)]
Stop producing xhtml/pdf/etc for webpage (logs indicate that nobody actually
looks at them).

12 years agoMerge whatis.1 into apropos.1 (and remove), add whatis bits to apropos
Kristaps Dzonsons [Sat, 9 Jun 2012 14:11:15 +0000 (14:11 +0000)]
Merge whatis.1 into apropos.1 (and remove), add whatis bits to apropos
(via mansearch), and merge mandocdb.h into mansearch.h (and remove).

12 years agoWhile I'm rooting around, note that we depend on sqlite3 now, not berkeley.
Kristaps Dzonsons [Sat, 9 Jun 2012 11:30:08 +0000 (11:30 +0000)]
While I'm rooting around, note that we depend on sqlite3 now, not berkeley.

12 years agoRemove catman(8): it's superfluous.
Kristaps Dzonsons [Sat, 9 Jun 2012 11:27:38 +0000 (11:27 +0000)]
Remove catman(8): it's superfluous.
Users of man.cgi should be able to just copy in their directories and have
the CGI fine everything on its own or just suck it up or, in the cases
of multiple manroots, have a simple config file.
Besides, now that mandocdb(8) is using relative paths for everything,
needing a fancy "cp -R" is silly.

12 years agoThs SYNCHRONOUS = off optimisation fails on my Mac OSX. Take it out until
Kristaps Dzonsons [Sat, 9 Jun 2012 11:21:12 +0000 (11:21 +0000)]
Ths SYNCHRONOUS = off optimisation fails on my Mac OSX.  Take it out until
I can test properly for this feature.

12 years agoMake test-ohash.c work on OpenBSD (it now works on have/havenots of OpenBSD
Kristaps Dzonsons [Sat, 9 Jun 2012 11:02:55 +0000 (11:02 +0000)]
Make test-ohash.c work on OpenBSD (it now works on have/havenots of OpenBSD
and OSX).

12 years agoAdd a compatibility interface for ohash.
Kristaps Dzonsons [Sat, 9 Jun 2012 11:00:13 +0000 (11:00 +0000)]
Add a compatibility interface for ohash.
This include's espie@'s wholesale src/lib/libc/ohash directory from OpenBSD
into compat_ohash.c (with a single copyright/license notice at the top)
and src/include/ohash.h as compat_ohash.h.
The ohash_int.h part of compat_ohash.c has been changed only in that ohash.h
points to compat_ohash.h.
Added HAVE_OHASH test (test-ohash.c) to Makefile.
In mandocdb.c and mansearch.c, check HAVE_OHASH test for inclusion.

12 years agoTurn off sqlite3 synchronous mode when creating a new database.
Kristaps Dzonsons [Fri, 8 Jun 2012 15:06:28 +0000 (15:06 +0000)]
Turn off sqlite3 synchronous mode when creating a new database.
This makes it run about 5x faster.
While here, wrap some sqlite3 statements in #defines to extract errors.
(Really, the warning/error/etc. macros should be functionified.)

12 years agoAllow mansearch to fail if invariancy (cwd) is violated. Also be more
Kristaps Dzonsons [Fri, 8 Jun 2012 14:14:30 +0000 (14:14 +0000)]
Allow mansearch to fail if invariancy (cwd) is violated.  Also be more
verbose if sqlite3 errors occur.

12 years agoUse C99 syntax for declaring the string-hash key array.
Kristaps Dzonsons [Fri, 8 Jun 2012 12:05:27 +0000 (12:05 +0000)]
Use C99 syntax for declaring the string-hash key array.

12 years agoRemove lint from Makefile.
Kristaps Dzonsons [Fri, 8 Jun 2012 10:47:17 +0000 (10:47 +0000)]
Remove lint from Makefile.
Disable some parts of the build (man.cgi, etc.) while sqlite3 is being
merged in nice and slow.
Remove the bit swapping stuff in config.h.post.
Remove apropos_db (replaced by mansearch).

12 years agoFlip apropos to use mansearch instead of apropos_db.
Kristaps Dzonsons [Fri, 8 Jun 2012 10:44:52 +0000 (10:44 +0000)]
Flip apropos to use mansearch instead of apropos_db.
This makes the utility much smaller and simpler.
A lot of functionality has been omitted while the sqlite3 search routines
improve (logical operations, etc.).
It still needs work to make the output more conventional.
Also add the manpage utility, which I use extensively as a mind-meld of
apropos and man.

12 years agoRe-tooled mandocdb using sqlite3 and ohash.
Kristaps Dzonsons [Fri, 8 Jun 2012 10:43:01 +0000 (10:43 +0000)]
Re-tooled mandocdb using sqlite3 and ohash.
See the tech@ mailing list entries in June 2012 for details, as well as the
discuss@ mailing list entries from March 2012.
Among other changes, this utility now:
 1.  uses a single sqlite3 database instead of several berkeley dbs
 2.  stores utf-8 encoded strings
 3.  using ohash to aggressively hash its contents
 4.  using fts() instead of manually walking directories

12 years agoAdd a new mansearch.h interface, which replaces apropos_db.c
Kristaps Dzonsons [Fri, 8 Jun 2012 10:36:23 +0000 (10:36 +0000)]
Add a new mansearch.h interface, which replaces apropos_db.c
This is a much more minimal interface that stuffs all operations into
a single function.
It uses sqlite3 and ohash.

12 years agoUse size_t in catman to match manpath.h.
Kristaps Dzonsons [Fri, 8 Jun 2012 10:33:48 +0000 (10:33 +0000)]
Use size_t in catman to match manpath.h.
Note this file will not be connected to the build for a little while as
I get the new sqlite3 stuff in.