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

Diff for /mandoc/mdoc.c between version 1.183 and 1.184

version 1.183, 2011/03/15 13:23:33 version 1.184, 2011/03/17 11:30:23
Line 303  mdoc_parseln(struct mdoc *m, int ln, char *buf, int of
Line 303  mdoc_parseln(struct mdoc *m, int ln, char *buf, int of
 }  }
   
   
 int  void
 mdoc_vmsg(struct mdoc *mdoc, enum mandocerr t,  mdoc_vmsg(struct mdoc *mdoc, enum mandocerr t,
                 int ln, int pos, const char *fmt, ...)                  int ln, int pos, const char *fmt, ...)
 {  {
Line 314  mdoc_vmsg(struct mdoc *mdoc, enum mandocerr t, 
Line 314  mdoc_vmsg(struct mdoc *mdoc, enum mandocerr t, 
         vsnprintf(buf, sizeof(buf) - 1, fmt, ap);          vsnprintf(buf, sizeof(buf) - 1, fmt, ap);
         va_end(ap);          va_end(ap);
   
         return((*mdoc->msg)(t, mdoc->data, ln, pos, buf));          (*mdoc->msg)(t, mdoc->data, ln, pos, buf);
 }  }
   
   

Legend:
Removed from v.1.183  
changed lines
  Added in v.1.184

CVSweb