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

Diff for /mandoc/mdoc.c between version 1.232 and 1.235

version 1.232, 2014/11/28 04:47:03 version 1.235, 2015/02/02 04:26:44
Line 190  mdoc_alloc(struct roff *roff, struct mparse *parse,
Line 190  mdoc_alloc(struct roff *roff, struct mparse *parse,
         return(p);          return(p);
 }  }
   
 int  void
 mdoc_endparse(struct mdoc *mdoc)  mdoc_endparse(struct mdoc *mdoc)
 {  {
   
         mdoc_macroend(mdoc);          mdoc_macroend(mdoc);
         return(1);  
 }  }
   
 int  void
 mdoc_addeqn(struct mdoc *mdoc, const struct eqn *ep)  mdoc_addeqn(struct mdoc *mdoc, const struct eqn *ep)
 {  {
         struct mdoc_node *n;          struct mdoc_node *n;
Line 209  mdoc_addeqn(struct mdoc *mdoc, const struct eqn *ep)
Line 208  mdoc_addeqn(struct mdoc *mdoc, const struct eqn *ep)
                 n->flags |= MDOC_LINE;                  n->flags |= MDOC_LINE;
         node_append(mdoc, n);          node_append(mdoc, n);
         mdoc->next = MDOC_NEXT_SIBLING;          mdoc->next = MDOC_NEXT_SIBLING;
         return(1);  
 }  }
   
 int  void
 mdoc_addspan(struct mdoc *mdoc, const struct tbl_span *sp)  mdoc_addspan(struct mdoc *mdoc, const struct tbl_span *sp)
 {  {
         struct mdoc_node *n;          struct mdoc_node *n;
Line 221  mdoc_addspan(struct mdoc *mdoc, const struct tbl_span 
Line 219  mdoc_addspan(struct mdoc *mdoc, const struct tbl_span 
         n->span = sp;          n->span = sp;
         node_append(mdoc, n);          node_append(mdoc, n);
         mdoc->next = MDOC_NEXT_SIBLING;          mdoc->next = MDOC_NEXT_SIBLING;
         return(1);  
 }  }
   
 /*  /*
Line 417  mdoc_body_alloc(struct mdoc *mdoc, int line, int pos, 
Line 414  mdoc_body_alloc(struct mdoc *mdoc, int line, int pos, 
         return(p);          return(p);
 }  }
   
 void  struct mdoc_node *
 mdoc_endbody_alloc(struct mdoc *mdoc, int line, int pos, enum mdoct tok,  mdoc_endbody_alloc(struct mdoc *mdoc, int line, int pos, enum mdoct tok,
                 struct mdoc_node *body, enum mdoc_endbody end)                  struct mdoc_node *body, enum mdoc_endbody end)
 {  {
Line 429  mdoc_endbody_alloc(struct mdoc *mdoc, int line, int po
Line 426  mdoc_endbody_alloc(struct mdoc *mdoc, int line, int po
         p->end = end;          p->end = end;
         node_append(mdoc, p);          node_append(mdoc, p);
         mdoc->next = MDOC_NEXT_SIBLING;          mdoc->next = MDOC_NEXT_SIBLING;
           return(p);
 }  }
   
 struct mdoc_node *  struct mdoc_node *

Legend:
Removed from v.1.232  
changed lines
  Added in v.1.235

CVSweb