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

Diff for /mandoc/term.c between version 1.155 and 1.156

version 1.155, 2010/06/30 12:27:55 version 1.156, 2010/06/30 12:30:36
Line 692  term_vspan(const struct termp *p, const struct roffsu 
Line 692  term_vspan(const struct termp *p, const struct roffsu 
 size_t  size_t
 term_hspan(const struct termp *p, const struct roffsu *su)  term_hspan(const struct termp *p, const struct roffsu *su)
 {  {
           double           v;
   
         return((*p->hspan)(p, su));          v = ((*p->hspan)(p, su));
           if (v < 0.0)
                   v = 0.0;
           return((size_t) /* LINTED */
                           v);
 }  }

Legend:
Removed from v.1.155  
changed lines
  Added in v.1.156

CVSweb