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

Diff for /mandoc/mdoc_man.c between version 1.69 and 1.70

version 1.69, 2014/08/10 23:54:41 version 1.70, 2014/08/21 12:57:17
Line 1166  pre_fl(DECL_ARGS)
Line 1166  pre_fl(DECL_ARGS)
   
         font_push('B');          font_push('B');
         print_word("\\-");          print_word("\\-");
         outflags &= ~MMAN_spc;          if (n->nchild)
                   outflags &= ~MMAN_spc;
         return(1);          return(1);
 }  }
   
Line 1175  post_fl(DECL_ARGS)
Line 1176  post_fl(DECL_ARGS)
 {  {
   
         font_pop();          font_pop();
         if (0 == n->nchild && NULL != n->next &&          if ( ! (n->nchild ||
                         n->next->line == n->line)              n->next == NULL ||
               n->next->type == MDOC_TEXT ||
               n->next->flags & MDOC_LINE))
                 outflags &= ~MMAN_spc;                  outflags &= ~MMAN_spc;
 }  }
   

Legend:
Removed from v.1.69  
changed lines
  Added in v.1.70

CVSweb