[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.164 and 1.165

version 1.164, 2019/01/05 09:46:34 version 1.165, 2019/01/05 21:55:11
Line 256  print_man_node(MAN_ARGS)
Line 256  print_man_node(MAN_ARGS)
         /* This will automatically close out any font scope. */          /* This will automatically close out any font scope. */
         print_stagq(h, t);          print_stagq(h, t);
   
         if (n->flags & NODE_NOFILL &&          if (n->flags & NODE_NOFILL && n->tok != MAN_YS &&
             (n->next == NULL || n->next->flags & NODE_LINE)) {              (n->next != NULL && n->next->flags & NODE_LINE)) {
                 /* In .nf = <pre>, print even empty lines. */                  /* In .nf = <pre>, print even empty lines. */
                 h->col++;                  h->col++;
                 print_endline(h);                  print_endline(h);

Legend:
Removed from v.1.164  
changed lines
  Added in v.1.165

CVSweb