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

Diff for /mandoc/Attic/xml.c between version 1.23 and 1.24

version 1.23, 2008/12/10 10:43:57 version 1.24, 2008/12/10 12:05:33
Line 44  static int  xml_begin(struct md_mbuf *,
Line 44  static int  xml_begin(struct md_mbuf *,
                                 const struct tm *,                                  const struct tm *,
                                 const char *, const char *,                                  const char *, const char *,
                                 enum roffmsec, enum roffvol);                                  enum roffmsec, enum roffvol);
 static  int             xml_end(struct md_mbuf *,  static  int             xml_end(struct md_mbuf *,
                                 const struct md_args *);                                  const struct md_args *,
                                   const struct tm *,
                                   const char *, const char *,
                                   enum roffmsec, enum roffvol);
 static  ssize_t         xml_printtagname(struct md_mbuf *,  static  ssize_t         xml_printtagname(struct md_mbuf *,
                                 enum md_ns, int);                                  enum md_ns, int);
 static  ssize_t         xml_printtagargs(struct md_mbuf *,  static  ssize_t         xml_printtagargs(struct md_mbuf *,
Line 139  xml_begin(struct md_mbuf *mbuf, const struct md_args *
Line 142  xml_begin(struct md_mbuf *mbuf, const struct md_args *
   
 /* ARGSUSED */  /* ARGSUSED */
 static int  static int
 xml_end(struct md_mbuf *mbuf, const struct md_args *args)  xml_end(struct md_mbuf *mbuf, const struct md_args *args,
                   const struct tm *tm, const char *os,
                   const char *title, enum roffmsec sec, enum roffvol vol)
 {  {
   
         return(ml_puts(mbuf, "</mdoc>", NULL));          return(ml_puts(mbuf, "</mdoc>", NULL));

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24

CVSweb