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

Diff for /mandoc/read.c between version 1.8 and 1.9

version 1.8, 2011/03/31 10:54:39 version 1.9, 2011/04/03 10:05:37
Line 709  void
Line 709  void
 mparse_result(struct mparse *curp, struct mdoc **mdoc, struct man **man)  mparse_result(struct mparse *curp, struct mdoc **mdoc, struct man **man)
 {  {
   
         *mdoc = curp->mdoc;          if (mdoc)
         *man = curp->man;                  *mdoc = curp->mdoc;
           if (man)
                   *man = curp->man;
 }  }
   
 void  void

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

CVSweb