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

Diff for /mandoc/term.c between version 1.111 and 1.113

version 1.111, 2009/10/26 07:18:23 version 1.113, 2009/10/26 17:05:44
Line 19 
Line 19 
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   #include <time.h>
   
 #include "chars.h"  #include "chars.h"
 #include "out.h"  #include "out.h"
Line 204  term_flushln(struct termp *p)
Line 205  term_flushln(struct termp *p)
                                 vis = 0;                                  vis = 0;
                         }                          }
                         /* Remove the overstep width. */                          /* Remove the overstep width. */
                         bp += overstep;                          bp += (int)/* LINTED */
                                   overstep;
                         overstep = 0;                          overstep = 0;
                 } else {                  } else {
                         for (j = 0; j < (int)vbl; j++)                          for (j = 0; j < (int)vbl; j++)

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

CVSweb