X-Git-Url: https://git.cameronkatri.com/mandoc.git/blobdiff_plain/127029dfaf617f304350eb1202db85c428fda879..1eb9c4523f63f5de5ae16bb140a12268511461a2:/man.3 diff --git a/man.3 b/man.3 index aefe977f..3bc67ad9 100644 --- a/man.3 +++ b/man.3 @@ -1,4 +1,4 @@ -.\" $Id: man.3,v 1.22 2010/07/07 15:04:54 kristaps Exp $ +.\" $Id: man.3,v 1.24 2010/08/20 01:02:07 schwarze Exp $ .\" .\" Copyright (c) 2009-2010 Kristaps Dzonsons .\" @@ -14,7 +14,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: July 7 2010 $ +.Dd $Mdocdate: August 20 2010 $ .Dt MAN 3 .Os .Sh NAME @@ -35,7 +35,6 @@ .Fo man_alloc .Fa "struct regset *regs" .Fa "void *data" -.Fa "int pflags" .Fa "mandocmsg msgs" .Fc .Ft int @@ -116,7 +115,6 @@ documents to be correctly formatted: \e*(PI (pi), \e*(L" (left double-quote), \e*(R" (right double-quote), -\e*(C+ (C++), \e*(C` (left single-quote), \e*(C' (right single-quote), \e*(Aq (apostrophe), @@ -173,10 +171,6 @@ The .Fa data pointer is passed to .Fa msgs . -The -.Fa pflags -arguments are defined in -.Pa man.h . Returns NULL on failure. If non-NULL, the pointer must be freed with .Fn man_free . @@ -299,7 +293,7 @@ int line; bzero(®s, sizeof(struct regset)); line = 1; -man = man_alloc(®s, NULL, 0, NULL); +man = man_alloc(®s, NULL, NULL); buf = NULL; alloc_len = 0;