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

Diff for /mandoc/term.c between version 1.185 and 1.186

version 1.185, 2011/04/29 22:18:12 version 1.186, 2011/04/30 22:24:31
Line 348  term_vspace(struct termp *p)
Line 348  term_vspace(struct termp *p)
 static void  static void
 numbered(struct termp *p, const char *word, size_t len)  numbered(struct termp *p, const char *word, size_t len)
 {  {
         const char      *rhs;          char             c;
   
         rhs = mchars_num2char(word, len);          if ('\0' != (c = mchars_num2char(word, len)))
         if (rhs)                  encode(p, &c, 1);
                 encode(p, rhs, 1);  
 }  }
   
   

Legend:
Removed from v.1.185  
changed lines
  Added in v.1.186

CVSweb