[BACK]Return to mdoc.3 CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/Attic/mdoc.3 between version 1.20 and 1.28

version 1.20, 2009/03/20 15:14:01 version 1.28, 2009/04/12 19:45:26
Line 1 
Line 1 
 .\" $Id$  .\"     $Id$
 .\"  .\"
 .\" Copyright (c) 2009 Kristaps Dzonsons <kristaps@openbsd.org>  .\" Copyright (c) 2009 Kristaps Dzonsons <kristaps@openbsd.org>
 .\"  .\"
 .\" Permission to use, copy, modify, and distribute this software for any  .\" Permission to use, copy, modify, and distribute this software for any
 .\" purpose with or without fee is hereby granted, provided that the  .\" purpose with or without fee is hereby granted, provided that the above
 .\" above copyright notice and this permission notice appear in all  .\" copyright notice and this permission notice appear in all copies.
 .\" copies.  
 .\"  .\"
 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL  .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 .\" WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED  .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 .\" WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE  .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 .\" AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL  .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 .\" DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR  .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 .\" PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER  .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR  .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\" PERFORMANCE OF THIS SOFTWARE.  
 .\"  .\"
 .Dd $Mdocdate$  .Dd $Mdocdate$
 .Dt mdoc 3  .Dt MDOC 3
 .Os  .Os
 .\" SECTION  .\" SECTION
 .Sh NAME  .Sh NAME
Line 36 
Line 34 
 .Vt extern const char * const * mdoc_argnames;  .Vt extern const char * const * mdoc_argnames;
 .Ft "struct mdoc *"  .Ft "struct mdoc *"
 .Fn mdoc_alloc "void *data" "int pflags" "const struct mdoc_cb *cb"  .Fn mdoc_alloc "void *data" "int pflags" "const struct mdoc_cb *cb"
 .Ft void  .Ft int
 .Fn mdoc_reset "struct mdoc *mdoc"  .Fn mdoc_reset "struct mdoc *mdoc"
 .Ft void  .Ft void
 .Fn mdoc_free "struct mdoc *mdoc"  .Fn mdoc_free "struct mdoc *mdoc"
Line 56  library parses lines of 
Line 54  library parses lines of 
 .Xr mdoc 7  .Xr mdoc 7
 input (and  input (and
 .Em only  .Em only
 mdoc) into an abstract syntax tree that generalises the semantic  mdoc) into an abstract syntax tree (AST).
 annotation of its input.  Common front-ends for  
 .Nm  
 are  
 .Xr mdocterm 1 ,  
 .Xr mdoclint 1  
 and  
 .Xr mdoctree 1 .  
 .\" PARAGRAPH  .\" PARAGRAPH
 .Pp  .Pp
 In general, applications initiate a parsing sequence with  In general, applications initiate a parsing sequence with
Line 140  Returns NULL on failure.  If non-NULL, the pointer mus
Line 131  Returns NULL on failure.  If non-NULL, the pointer mus
 .It Fn mdoc_reset  .It Fn mdoc_reset
 Reset the parser for another parse routine.  After its use,  Reset the parser for another parse routine.  After its use,
 .Fn mdoc_parseln  .Fn mdoc_parseln
 behaves as if invoked for the first time.  behaves as if invoked for the first time.  If it returns 0, memory could
   not be allocated.
 .\" LIST-ITEM  .\" LIST-ITEM
 .It Fn mdoc_free  .It Fn mdoc_free
 Free all resources of a parser.  The pointer is no longer valid after  Free all resources of a parser.  The pointer is no longer valid after
Line 227  fields), its position in the tree (the
Line 219  fields), its position in the tree (the
 .Va next  .Va next
 and  and
 .Va prev  .Va prev
 fields) and type-specific data (the  fields) and some type-specific data.
 .Va data  
 field).  
 .\" PARAGRAPH  .\" PARAGRAPH
 .Pp  .Pp
 The tree itself is arranged according to the following normal form,  The tree itself is arranged according to the following normal form,
Line 281  size_t len;
Line 271  size_t len;
 int line;  int line;
   
 line = 1;  line = 1;
 mdoc = mdoc_alloc(NULL, NULL);  mdoc = mdoc_alloc(NULL, 0, NULL);
   
 while ((buf = fgetln(fp, &len))) {  while ((buf = fgetln(fp, &len))) {
         buf[len - 1] = '\\0';          buf[len - 1] = '\\0';
Line 314  utility was written by 
Line 304  utility was written by 
 .\" LIST-ITEM  .\" LIST-ITEM
 .It  .It
 The  The
 .Sq \&Xc  .Sq \&.Xc
 and  and
 .Sq \&Xo  .Sq \&.Xo
 macros aren't handled when used to span lines for the  macros aren't handled when used to span lines for the
 .Sq \&It  .Sq \&.It
 macro.  macro.
 .\" LIST-ITEM  .\" LIST-ITEM
 .It  .It
 The  The
 .Sq \&Bsx  .Sq \&.Bsx
 macro doesn't yet understand version arguments.  macro family doesn't yet understand version arguments.
   .\" LIST-ITEM
   .It
   If not given a value, the \-offset argument to
   .Sq \&.Bd
   and
   .Sq \&.Bl
   should be the width of
   .Qq <string> ;
   instead, a value of
   .Li 10n
   is provided.
   .\" LIST-ITEM
   .It
   Columns widths in
   .Sq \&.Bl \-column
   should default to width
   .Qq <stringx>
   if not included.
   .\" LIST-ITEM
   .It
   List-width suffix
   .Qq m
   isn't handled.
   .\" LIST-ITEM
   .It
   Contents of the SYNOPSIS section aren't checked.
 .El  .El

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.28

CVSweb