[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.113 and 1.114

version 1.113, 2014/12/23 01:57:11 version 1.114, 2014/12/23 08:15:37
Line 631 
Line 631 
   
                 p->offset = mt->offset;                  p->offset = mt->offset;
                 p->rmargin = mt->offset + len;                  p->rmargin = mt->offset + len;
                 if (ival < 0)  
                         break;  
   
                 /* Set the saved left-margin. */                  /* Set the saved left-margin. */
                 mt->lmargin[mt->lmargincur] = (size_t)ival;                  if (ival >= 0)
                           mt->lmargin[mt->lmargincur] = (size_t)ival;
   
                 savelit = MANT_LITERAL & mt->fl;                  savelit = MANT_LITERAL & mt->fl;
                 mt->fl &= ~MANT_LITERAL;                  mt->fl &= ~MANT_LITERAL;

Legend:
Removed from v.1.113  
changed lines
  Added in v.1.114