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

Diff for /mandoc/mdoc.h between version 1.105 and 1.108

version 1.105, 2010/10/04 07:01:02 version 1.108, 2010/12/16 17:14:48
Line 283  enum mdoc_list {
Line 283  enum mdoc_list {
         LIST_inset,          LIST_inset,
         LIST_item,          LIST_item,
         LIST_ohang,          LIST_ohang,
         LIST_tag          LIST_tag,
           LIST_MAX
 };  };
   
 /*  /*
Line 358  struct mdoc_an {
Line 359  struct mdoc_an {
  * provided, etc.   * provided, etc.
  */   */
 union mdoc_data {  union mdoc_data {
         struct mdoc_an    An;          struct mdoc_an   *An;
         struct mdoc_bd   *Bd;          struct mdoc_bd   *Bd;
         struct mdoc_bf   *Bf;          struct mdoc_bf   *Bf;
         struct mdoc_bl   *Bl;          struct mdoc_bl   *Bl;
Line 370  union mdoc_data {
Line 371  union mdoc_data {
 struct  mdoc_node {  struct  mdoc_node {
         struct mdoc_node *parent; /* parent AST node */          struct mdoc_node *parent; /* parent AST node */
         struct mdoc_node *child; /* first child AST node */          struct mdoc_node *child; /* first child AST node */
           struct mdoc_node *last; /* last child AST node */
         struct mdoc_node *next; /* sibling AST node */          struct mdoc_node *next; /* sibling AST node */
         struct mdoc_node *prev; /* prior sibling AST node */          struct mdoc_node *prev; /* prior sibling AST node */
         int               nchild; /* number children */          int               nchild; /* number children */

Legend:
Removed from v.1.105  
changed lines
  Added in v.1.108

CVSweb