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

Diff for /mandoc/html.c between version 1.20 and 1.21

version 1.20, 2008/12/10 00:58:15 version 1.21, 2008/12/10 10:43:57
Line 72  static int  html_begin(struct md_mbuf *,
Line 72  static int  html_begin(struct md_mbuf *,
                                 const struct md_args *,                                  const struct md_args *,
                                 const struct tm *,                                  const struct tm *,
                                 const char *, const char *,                                  const char *, const char *,
                                 enum roffmsec, const char *);                                  enum roffmsec, enum roffvol);
 static  int             html_printargs(struct md_mbuf *, int,  static  int             html_printargs(struct md_mbuf *, int,
                                 const char *, const int *,                                  const char *, const int *,
                                 const char **, size_t *);                                  const char **, size_t *);
Line 382  html_aputln(struct md_mbuf *mbuf, enum ml_scope scope,
Line 382  html_aputln(struct md_mbuf *mbuf, enum ml_scope scope,
 static int  static int
 html_begin(struct md_mbuf *mbuf, const struct md_args *args,  html_begin(struct md_mbuf *mbuf, const struct md_args *args,
                 const struct tm *tm, const char *os,                  const struct tm *tm, const char *os,
                 const char *name, enum roffmsec msec, const char *vol)                  const char *name, enum roffmsec msec, enum roffvol vol)
 {  {
         struct html_pair attr[4];          struct html_pair attr[4];
         char             ts[32];          char             ts[32], title[64];
         int              i;          int              i;
   
         (void)snprintf(ts, sizeof(ts), "%s(%s)",          (void)snprintf(ts, sizeof(ts), "%s(%s)",
                         name, roff_msecname(msec));                          name, roff_msecname(msec));
   
           (void)snprintf(ts, sizeof(ts), "%s",
                           name, roff_volname(vol));
   
           if (vol >= ROFF_ARCH_START) {
   
           }
   
   
         i = 0;          i = 0;
   

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

CVSweb