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

Diff for /mandoc/term_ascii.c between version 1.7 and 1.8

version 1.7, 2010/06/30 12:27:55 version 1.8, 2010/06/30 12:30:36
Line 30 
Line 30 
 #include "term.h"  #include "term.h"
 #include "main.h"  #include "main.h"
   
 static  size_t            ascii_hspan(const struct termp *,  static  double            ascii_hspan(const struct termp *,
                                 const struct roffsu *);                                  const struct roffsu *);
 static  size_t            ascii_width(const struct termp *, char);  static  size_t            ascii_width(const struct termp *, char);
 static  void              ascii_advance(struct termp *, size_t);  static  void              ascii_advance(struct termp *, size_t);
Line 146  ascii_advance(struct termp *p, size_t len)
Line 146  ascii_advance(struct termp *p, size_t len)
   
   
 /* ARGSUSED */  /* ARGSUSED */
 static size_t  static double
 ascii_hspan(const struct termp *p, const struct roffsu *su)  ascii_hspan(const struct termp *p, const struct roffsu *su)
 {  {
         double           r;          double           r;
Line 180  ascii_hspan(const struct termp *p, const struct roffsu
Line 180  ascii_hspan(const struct termp *p, const struct roffsu
                 break;                  break;
         }          }
   
         /* Explicitly disallow negative values. */          return(r);
   
         if (r < 0.0)  
                 r = 0.0;  
   
         return((size_t)/* LINTED */  
                         r);  
 }  }
   

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

CVSweb