[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.236

version 1.232, 2014/11/28 04:47:03 version 1.236, 2015/02/05 00:14:13
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 366  node_alloc(struct mdoc *mdoc, int line, int pos,
Line 363  node_alloc(struct mdoc *mdoc, int line, int pos,
         p->sec = mdoc->lastsec;          p->sec = mdoc->lastsec;
         p->line = line;          p->line = line;
         p->pos = pos;          p->pos = pos;
         p->lastline = line;  
         p->tok = tok;          p->tok = tok;
         p->type = type;          p->type = type;
   
Line 417  mdoc_body_alloc(struct mdoc *mdoc, int line, int pos, 
Line 413  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 425  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.236

CVSweb