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

Diff for /mandoc/mdoc.c between version 1.205 and 1.207

version 1.205, 2013/10/21 23:47:58 version 1.207, 2013/12/31 23:23:11
Line 434  node_alloc(struct mdoc *mdoc, int line, int pos, 
Line 434  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 845  mdoc_ptext(struct mdoc *mdoc, int line, char *buf, int
Line 846  mdoc_ptext(struct mdoc *mdoc, int line, char *buf, int
   
         assert(buf < end);          assert(buf < end);
   
         if (mandoc_eos(buf+offs, (size_t)(end-buf-offs), 0))          if (mandoc_eos(buf+offs, (size_t)(end-buf-offs)))
                 mdoc->last->flags |= MDOC_EOS;                  mdoc->last->flags |= MDOC_EOS;
   
         return(1);          return(1);

Legend:
Removed from v.1.205  
changed lines
  Added in v.1.207

CVSweb