[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.129 and 1.130

version 1.129, 2015/04/04 18:52:12 version 1.130, 2015/04/06 13:34:54
Line 877 
Line 877 
   
         n = n->parent->head;          n = n->parent->head;
         n->aux = SHRT_MAX + 1;          n->aux = SHRT_MAX + 1;
         if (n->child != NULL && a2roffsu(n->child->string, &su, SCALE_EN))          if (n->child == NULL)
                   n->aux = mt->lmargin[mt->lmargincur];
           else if (a2roffsu(n->child->string, &su, SCALE_EN))
                 n->aux = term_hspan(p, &su) / 24;                  n->aux = term_hspan(p, &su) / 24;
         if (n->aux < 0 && (size_t)(-n->aux) > mt->offset)          if (n->aux < 0 && (size_t)(-n->aux) > mt->offset)
                 n->aux = -mt->offset;                  n->aux = -mt->offset;

Legend:
Removed from v.1.129  
changed lines
  Added in v.1.130