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

Diff for /mandoc/read.c between version 1.215 and 1.217

version 1.215, 2020/03/13 15:32:28 version 1.217, 2020/04/07 22:56:02
Line 678  mparse_alloc(int options, enum mandoc_os os_e, const c
Line 678  mparse_alloc(int options, enum mandoc_os os_e, const c
 void  void
 mparse_reset(struct mparse *curp)  mparse_reset(struct mparse *curp)
 {  {
           tag_free();
         roff_reset(curp->roff);          roff_reset(curp->roff);
         roff_man_reset(curp->man);          roff_man_reset(curp->man);
         free_buf_list(curp->secondary);          free_buf_list(curp->secondary);
         curp->secondary = NULL;          curp->secondary = NULL;
         curp->gzip = 0;          curp->gzip = 0;
           tag_alloc();
 }  }
   
 void  void
Line 706  mparse_result(struct mparse *curp)
Line 708  mparse_result(struct mparse *curp)
                         mdoc_validate(curp->man);                          mdoc_validate(curp->man);
                 else                  else
                         man_validate(curp->man);                          man_validate(curp->man);
                   tag_postprocess(curp->man->meta.first);
         }          }
         return &curp->man->meta;          return &curp->man->meta;
 }  }

Legend:
Removed from v.1.215  
changed lines
  Added in v.1.217

CVSweb