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

Diff for /mandoc/man_html.c between version 1.30 and 1.31

version 1.30, 2010/03/24 20:10:53 version 1.31, 2010/05/15 15:54:39
Line 162  print_man_head(MAN_ARGS)
Line 162  print_man_head(MAN_ARGS)
   
         print_gen_head(h);          print_gen_head(h);
         bufinit(h);          bufinit(h);
         buffmt(h, "%s(%d)", m->title, m->msec);          buffmt(h, "%s(%s)", m->title, m->msec);
   
         print_otag(h, TAG_TITLE, 0, NULL);          print_otag(h, TAG_TITLE, 0, NULL);
         print_text(h, h->buf);          print_text(h, h->buf);
Line 267  man_root_pre(MAN_ARGS)
Line 267  man_root_pre(MAN_ARGS)
         if (m->vol)          if (m->vol)
                 (void)strlcat(b, m->vol, BUFSIZ);                  (void)strlcat(b, m->vol, BUFSIZ);
   
         snprintf(title, BUFSIZ - 1, "%s(%d)", m->title, m->msec);          snprintf(title, BUFSIZ - 1, "%s(%s)", m->title, m->msec);
   
         PAIR_CLASS_INIT(&tag[0], "header");          PAIR_CLASS_INIT(&tag[0], "header");
         bufcat_style(h, "width", "100%");          bufcat_style(h, "width", "100%");

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31

CVSweb