[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.84 and 1.85

version 1.84, 2011/11/18 17:05:50 version 1.85, 2011/12/04 00:44:12
Line 178  print_man_head(MAN_ARGS)
Line 178  print_man_head(MAN_ARGS)
 {  {
   
         print_gen_head(h);          print_gen_head(h);
           assert(m->title);
           assert(m->msec);
         bufcat_fmt(h, "%s(%s)", m->title, m->msec);          bufcat_fmt(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 305  man_root_pre(MAN_ARGS)
Line 307  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(%s)", m->title ? m->title : "",          assert(m->title);
             m->msec ? m->msec : "");          assert(m->msec);
           snprintf(title, BUFSIZ - 1, "%s(%s)", m->title, m->msec);
   
         PAIR_SUMMARY_INIT(&tag[0], "Document Header");          PAIR_SUMMARY_INIT(&tag[0], "Document Header");
         PAIR_CLASS_INIT(&tag[1], "head");          PAIR_CLASS_INIT(&tag[1], "head");
Line 360  man_root_post(MAN_ARGS)
Line 363  man_root_post(MAN_ARGS)
         PAIR_CLASS_INIT(&tag[0], "foot-date");          PAIR_CLASS_INIT(&tag[0], "foot-date");
         print_otag(h, TAG_TD, 1, tag);          print_otag(h, TAG_TD, 1, tag);
   
         if (m->date)          assert(m->date);
                 print_text(h, m->date);          print_text(h, m->date);
         print_stagq(h, tt);          print_stagq(h, tt);
   
         PAIR_CLASS_INIT(&tag[0], "foot-os");          PAIR_CLASS_INIT(&tag[0], "foot-os");

Legend:
Removed from v.1.84  
changed lines
  Added in v.1.85

CVSweb