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

Diff for /mandoc/mdoc.h between version 1.97 and 1.98

version 1.97, 2010/07/02 10:53:28 version 1.98, 2010/07/02 12:54:33
Line 279  enum mdoc_disp {
Line 279  enum mdoc_disp {
         DISP_literal          DISP_literal
 };  };
   
   enum    mdoc_font {
           FONT__NONE = 0,
           FONT_Em,
           FONT_Li,
           FONT_Sy
   };
   
 struct  mdoc_bd {  struct  mdoc_bd {
         const char       *offs; /* -offset */          const char       *offs; /* -offset */
         enum mdoc_disp    type; /* -ragged, etc. */          enum mdoc_disp    type; /* -ragged, etc. */
Line 292  struct mdoc_bl {
Line 299  struct mdoc_bl {
         int               comp; /* -compact */          int               comp; /* -compact */
 };  };
   
   struct  mdoc_bf {
           enum mdoc_font    font; /* font */
   };
   
 /* 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 321  struct mdoc_node {
Line 332  struct mdoc_node {
         enum mdoc_endbody end;          /* BODY */          enum mdoc_endbody end;          /* BODY */
   
         union {          union {
                 struct mdoc_bl *Bl;  
                 struct mdoc_bd *Bd;                  struct mdoc_bd *Bd;
                   struct mdoc_bf *Bf;
                   struct mdoc_bl *Bl;
         } data;          } data;
 };  };
   

Legend:
Removed from v.1.97  
changed lines
  Added in v.1.98

CVSweb