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

Diff for /mandoc/mdoc_html.c between version 1.221 and 1.222

version 1.221, 2015/02/01 23:10:35 version 1.222, 2015/02/05 00:14:13
Line 436  print_mdoc_node(MDOC_ARGS)
Line 436  print_mdoc_node(MDOC_ARGS)
                 break;                  break;
         }          }
   
         if (HTML_KEEP & h->flags) {          if (h->flags & HTML_KEEP && n->flags & MDOC_LINE) {
                 if (n->prev ? (n->prev->lastline != n->line) :                  h->flags &= ~HTML_KEEP;
                     (n->parent && n->parent->line != n->line)) {                  h->flags |= HTML_PREKEEP;
                         h->flags &= ~HTML_KEEP;  
                         h->flags |= HTML_PREKEEP;  
                 }  
         }          }
   
         if (child && n->child)          if (child && n->child)

Legend:
Removed from v.1.221  
changed lines
  Added in v.1.222

CVSweb