[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.180 and 1.181

version 1.180, 2022/07/03 14:29:45 version 1.181, 2022/07/04 14:37:33
Line 123  html_man(void *arg, const struct roff_meta *man)
Line 123  html_man(void *arg, const struct roff_meta *man)
         if ((h->oflags & HTML_FRAGMENT) == 0) {          if ((h->oflags & HTML_FRAGMENT) == 0) {
                 print_gen_decls(h);                  print_gen_decls(h);
                 print_otag(h, TAG_HTML, "");                  print_otag(h, TAG_HTML, "");
                 if (n != NULL && n->type == ROFFT_COMMENT)  
                         print_gen_comment(h, n);  
                 t = print_otag(h, TAG_HEAD, "");                  t = print_otag(h, TAG_HEAD, "");
                 print_man_head(man, h);                  print_man_head(man, h);
                 print_tagq(h, t);                  print_tagq(h, t);
                   if (n != NULL && n->type == ROFFT_COMMENT)
                           print_gen_comment(h, n);
                 print_otag(h, TAG_BODY, "");                  print_otag(h, TAG_BODY, "");
         }          }
   

Legend:
Removed from v.1.180  
changed lines
  Added in v.1.181

CVSweb