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

Diff for /mandoc/man_term.c between version 1.176 and 1.177

version 1.176, 2015/04/04 18:52:51 version 1.177, 2015/04/06 13:35:08
Line 879  pre_RS(DECL_ARGS)
Line 879  pre_RS(DECL_ARGS)
   
         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.176  
changed lines
  Added in v.1.177

CVSweb