[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.102 and 1.103

version 1.102, 2009/11/12 05:50:12 version 1.103, 2010/01/01 13:17:59
Line 1019  termp_fl_pre(DECL_ARGS)
Line 1019  termp_fl_pre(DECL_ARGS)
 {  {
   
         term_fontpush(p, TERMFONT_BOLD);          term_fontpush(p, TERMFONT_BOLD);
   
           /* A zero-length child shouldn't get a dash. */
   
           if (n->child) {
                   assert(MDOC_TEXT == n->child->type);
                   assert(n->child->string);
                   if ('\0' == *n->child->string)
                           return(0);
           }
   
         term_word(p, "\\-");          term_word(p, "\\-");
         p->flags |= TERMP_NOSPACE;  
           /* A blank `Fl' should incur a subsequent space. */
   
           if (n->child)
                   p->flags |= TERMP_NOSPACE;
   
         return(1);          return(1);
 }  }
   

Legend:
Removed from v.1.102  
changed lines
  Added in v.1.103

CVSweb