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

Diff for /mandoc/mandoc.h between version 1.85 and 1.86

version 1.85, 2011/07/21 13:18:24 version 1.86, 2011/07/21 13:37:04
Line 298  enum eqn_markt {
Line 298  enum eqn_markt {
         EQNMARK__MAX          EQNMARK__MAX
 };  };
   
 /*  enum    eqn_fontt {
           EQNFONT_NONE = 0,
           EQNFONT_ROMAN,
           EQNFONT_BOLD,
           EQNFONT_ITALIC,
           EQNFONT__MAX
   };
   
    /*
  * A "box" is a parsed mathematical expression as defined by the eqn.7   * A "box" is a parsed mathematical expression as defined by the eqn.7
  * grammar.   * grammar.
  */   */
Line 307  struct eqn_box {
Line 315  struct eqn_box {
         struct eqn_box   *child; /* child node */          struct eqn_box   *child; /* child node */
         struct eqn_box   *next; /* next in tree */          struct eqn_box   *next; /* next in tree */
         char             *text; /* text (or NULL) */          char             *text; /* text (or NULL) */
         enum eqn_markt    mark; /* whether 'marked' */          enum eqn_markt    mark; /* a mark about the box */
           enum eqn_fontt    font; /* font of box */
 };  };
   
 struct  eqn {  struct  eqn {

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

CVSweb