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

Diff for /mandoc/mdoc_term.c between version 1.279 and 1.280

version 1.279, 2014/08/17 16:51:55 version 1.280, 2014/08/21 12:57:17
Line 1075  termp_fl_pre(DECL_ARGS)
Line 1075  termp_fl_pre(DECL_ARGS)
         term_fontpush(p, TERMFONT_BOLD);          term_fontpush(p, TERMFONT_BOLD);
         term_word(p, "\\-");          term_word(p, "\\-");
   
         if (n->child)          if ( ! (n->nchild == 0 &&
                 p->flags |= TERMP_NOSPACE;              (n->next == NULL ||
         else if (n->next && n->next->line == n->line)               n->next->type == MDOC_TEXT ||
                n->next->flags & MDOC_LINE)))
                 p->flags |= TERMP_NOSPACE;                  p->flags |= TERMP_NOSPACE;
   
         return(1);          return(1);

Legend:
Removed from v.1.279  
changed lines
  Added in v.1.280

CVSweb