[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.52 and 1.53

version 1.52, 2015/11/12 21:50:03 version 1.53, 2016/07/08 22:29:05
Line 163  ascii_setwidth(struct termp *p, int iop, int width)
Line 163  ascii_setwidth(struct termp *p, int iop, int width)
 }  }
   
 void  void
 ascii_sepline(void *arg)  terminal_sepline(void *arg)
 {  {
         struct termp    *p;          struct termp    *p;
         size_t           i;          size_t           i;
   
         p = (struct termp *)arg;          p = (struct termp *)arg;
         p->line += 3;          (*p->endline)(p);
         putchar('\n');  
         for (i = 0; i < p->defrmargin; i++)          for (i = 0; i < p->defrmargin; i++)
                 putchar('-');                  (*p->letter)(p, '-');
         putchar('\n');          (*p->endline)(p);
         putchar('\n');          (*p->endline)(p);
 }  }
   
 static size_t  static size_t

Legend:
Removed from v.1.52  
changed lines
  Added in v.1.53

CVSweb