[BACK]Return to man_html.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/man_html.c between version 1.95 and 1.96

version 1.95, 2017/05/09 14:09:37 version 1.96, 2017/06/08 12:54:40
Line 356 
Line 356 
 static int  static int
 a2width(const struct roff_node *n, struct roffsu *su)  a2width(const struct roff_node *n, struct roffsu *su)
 {  {
   
         if (n->type != ROFFT_TEXT)          if (n->type != ROFFT_TEXT)
                 return 0;                  return 0;
         if (a2roffsu(n->string, su, SCALE_EN))          return a2roffsu(n->string, su, SCALE_EN) != NULL;
                 return 1;  
   
         return 0;  
 }  }
   
 static void  static void

Legend:
Removed from v.1.95  
changed lines
  Added in v.1.96