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

Diff for /mandoc/mandoc.h between version 1.81 and 1.83

version 1.81, 2011/07/18 14:30:51 version 1.83, 2011/07/21 11:34:53
Line 277  struct tbl_span {
Line 277  struct tbl_span {
         struct tbl_span  *next;          struct tbl_span  *next;
 };  };
   
   enum    eqn_boxt {
           EQN_ROOT,
           EQN_TEXT
   };
   
   struct  eqn_box {
           enum eqn_boxt     type;
           struct eqn_box   *child;
           struct eqn_box   *next;
           char             *text;
   };
   
 struct  eqn {  struct  eqn {
         size_t            sz;          struct eqn_box   *root;
         char             *data;          int               ln; /* invocation line */
         int               line; /* invocation line */  
         int               pos; /* invocation position */          int               pos; /* invocation position */
 };  };
   

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

CVSweb