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

Diff for /src/usr.bin/mandoc/man_term.c between version 1.146 and 1.147

version 1.146, 2017/05/04 17:48:24 version 1.147, 2017/05/04 22:07:44
Line 455 
Line 455 
                 }                  }
         }          }
   
         if (n->tok == ROFF_br)          if (n->child == NULL)
                 len = 0;  
         else if (n->child == NULL)  
                 len = 1;                  len = 1;
         else {          else {
                 if ( ! a2roffsu(n->child->string, &su, SCALE_VS))                  if ( ! a2roffsu(n->child->string, &su, SCALE_VS))
Line 985 
Line 983 
         }          }
   
         if (n->tok < ROFF_MAX) {          if (n->tok < ROFF_MAX) {
                 switch (n->tok) {                  roff_term_pre(p, n);
                 case ROFF_br:  
                         pre_sp(p, mt, n, meta);  
                         break;  
                 default:  
                         abort();  
                 }  
                 return;                  return;
         }          }
   

Legend:
Removed from v.1.146  
changed lines
  Added in v.1.147