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

version 1.83, 2010/05/31 10:28:04 version 1.87, 2010/06/12 12:10:55
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; /* -offset */
           enum mdoc_disp    type; /* -ragged, etc. */
           int               comp; /* -compact */
   };
   
   struct  mdoc_bl {
           enum mdoc_list    type; /* -tag, -enum, etc. */
           int               comp; /* -compact */
   };
   
 /* 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 310  struct mdoc_node {
         char             *string;       /* TEXT */          char             *string;       /* TEXT */
   
         union {          union {
                 enum mdoc_list list; /* for `Bl' nodes */                  struct mdoc_bl Bl;
                   struct mdoc_bd Bd;
         } data;          } data;
 };  };
   

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

CVSweb