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

Diff for /mandoc/mdoc.h between version 1.83 and 1.84

version 1.83, 2010/05/31 10:28:04 version 1.84, 2010/06/12 10:09:19
Line 263  enum mdoc_list {
Line 263  enum mdoc_list {
         LIST_tag          LIST_tag
 };  };
   
   enum    mdoc_disp {
           DISP__NONE = 0,
           DISP_centred,
           DISP_ragged,
           DISP_unfilled,
           DISP_filled,
           DISP_literal
   };
   
 /* Node in AST. */  /* Node in AST. */
 struct  mdoc_node {  struct  mdoc_node {
         struct mdoc_node *parent; /* parent AST node */          struct mdoc_node *parent; /* parent AST node */
Line 290  struct mdoc_node {
Line 299  struct mdoc_node {
         char             *string;       /* TEXT */          char             *string;       /* TEXT */
   
         union {          union {
                 enum mdoc_list list; /* for `Bl' nodes */                  enum mdoc_list list; /* `Bl' nodes */
                   enum mdoc_disp disp; /* `Bd' nodes */
         } data;          } data;
 };  };
   

Legend:
Removed from v.1.83  
changed lines
  Added in v.1.84

CVSweb