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

Diff for /mandoc/mdoc.c between version 1.78 and 1.79

version 1.78, 2009/06/15 09:55:43 version 1.79, 2009/06/15 10:02:53
Line 293  mdoc_vwarn(struct mdoc *mdoc, int ln, int pos, 
Line 293  mdoc_vwarn(struct mdoc *mdoc, int ln, int pos, 
   
   
 int  int
 mdoc_nwarn(struct mdoc *mdoc, const struct mdoc_node *node, enum mdoc_warn type,  
                 const char *fmt, ...)  
 {  
         char             buf[256];  
         va_list          ap;  
   
         if (NULL == mdoc->cb.mdoc_warn)  
                 return(0);  
   
         va_start(ap, fmt);  
         (void)vsnprintf(buf, sizeof(buf) - 1, fmt, ap);  
         va_end(ap);  
         return((*mdoc->cb.mdoc_warn)(mdoc->data, node->line, node->pos, type,  
             buf));  
 }  
   
 int  
 mdoc_nerr(struct mdoc *mdoc, const struct mdoc_node *node, const char *fmt, ...)  mdoc_nerr(struct mdoc *mdoc, const struct mdoc_node *node, const char *fmt, ...)
 {  {
         char             buf[256];          char             buf[256];

Legend:
Removed from v.1.78  
changed lines
  Added in v.1.79

CVSweb