[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.182 and 1.183

version 1.182, 2015/04/19 14:00:19 version 1.183, 2015/04/19 19:44:21
Line 482  pre_sp(DECL_ARGS)
Line 482  pre_sp(DECL_ARGS)
                 for (i = 0; i < len; i++)                  for (i = 0; i < len; i++)
                         term_vspace(p);                          term_vspace(p);
   
           /*
            * Handle an explicit break request in the same way
            * as an overflowing line.
            */
   
           if (p->flags & TERMP_BRIND) {
                   p->offset = p->rmargin;
                   p->rmargin = p->maxrmargin;
                   p->flags &= ~(TERMP_NOBREAK | TERMP_BRIND);
           }
   
         return(0);          return(0);
 }  }
   

Legend:
Removed from v.1.182  
changed lines
  Added in v.1.183

CVSweb