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

Diff for /mandoc/mdoc.h between version 1.115 and 1.117

version 1.115, 2011/01/25 10:37:49 version 1.117, 2011/02/09 09:05:52
Line 191  enum mdoc_type {
Line 191  enum mdoc_type {
         MDOC_BODY,          MDOC_BODY,
         MDOC_BLOCK,          MDOC_BLOCK,
         MDOC_TBL,          MDOC_TBL,
           MDOC_EQN,
         MDOC_ROOT          MDOC_ROOT
 };  };
   
Line 401  struct mdoc_node {
Line 402  struct mdoc_node {
         struct mdoc_node *tail; /* BLOCK */          struct mdoc_node *tail; /* BLOCK */
         char             *string; /* TEXT */          char             *string; /* TEXT */
         const struct tbl_span *span; /* TBL */          const struct tbl_span *span; /* TBL */
           const struct eqn *eqn; /* EQN */
         enum mdoc_endbody end; /* BODY */          enum mdoc_endbody end; /* BODY */
 };  };
   
Line 430  const struct mdoc_meta *mdoc_meta(const struct mdoc *)
Line 432  const struct mdoc_meta *mdoc_meta(const struct mdoc *)
 int               mdoc_endparse(struct mdoc *);  int               mdoc_endparse(struct mdoc *);
 int               mdoc_addspan(struct mdoc *,  int               mdoc_addspan(struct mdoc *,
                         const struct tbl_span *);                          const struct tbl_span *);
   int               mdoc_addeqn(struct mdoc *,
                           const struct eqn *);
   
 __END_DECLS  __END_DECLS
   

Legend:
Removed from v.1.115  
changed lines
  Added in v.1.117

CVSweb