[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.85

version 1.83, 2010/05/31 10:28:04 version 1.85, 2010/06/12 11:21:44
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
   };
   
   struct  mdoc_bd {
           const char       *offs;
           enum mdoc_disp    type;
           int               comp;
   };
   
 /* 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 305  struct mdoc_node {
         char             *string;       /* TEXT */          char             *string;       /* TEXT */
   
         union {          union {
                 enum mdoc_list list; /* for `Bl' nodes */                  enum mdoc_list list; /* `Bl' nodes */
                   struct mdoc_bd Bd;
         } data;          } data;
 };  };
   

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

CVSweb