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

Diff for /mandoc/Attic/xml.c between version 1.20 and 1.22

version 1.20, 2008/12/08 12:46:28 version 1.22, 2008/12/10 00:53:40
Line 20 
Line 20 
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
 #include "libmdocml.h"  
 #include "private.h"  #include "private.h"
 #include "ml.h"  #include "ml.h"
   
Line 68  xml_printtagargs(struct md_mbuf *mbuf, const int *argc
Line 67  xml_printtagargs(struct md_mbuf *mbuf, const int *argc
         for (res = 0, i = 0; ROFF_ARGMAX != (c = argc[i]); i++) {          for (res = 0, i = 0; ROFF_ARGMAX != (c = argc[i]); i++) {
                 if ( ! ml_nputs(mbuf, " ", 1, &res))                  if ( ! ml_nputs(mbuf, " ", 1, &res))
                         return(-1);                          return(-1);
   
                   /* FIXME: should puke on some, no? */
   
                 if ( ! ml_puts(mbuf, tokargnames[c], &res))                  if ( ! ml_puts(mbuf, tokargnames[c], &res))
                         return(-1);                          return(-1);

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.22

CVSweb