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

Diff for /mandoc/term_ps.c between version 1.82 and 1.84

version 1.82, 2016/08/10 11:03:43 version 1.84, 2017/05/08 15:34:54
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2014, 2015, 2016 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2014, 2015, 2016, 2017 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 104  static void    ps_pclose(struct termp *);
Line 104  static void    ps_pclose(struct termp *);
 static  void              ps_plast(struct termp *);  static  void              ps_plast(struct termp *);
 static  void              ps_pletter(struct termp *, int);  static  void              ps_pletter(struct termp *, int);
 static  void              ps_printf(struct termp *, const char *, ...)  static  void              ps_printf(struct termp *, const char *, ...)
                                 __attribute__((__format__ (printf, 2, 3)));                                  __attribute__((__format__ (__printf__, 2, 3)));
 static  void              ps_putchar(struct termp *, char);  static  void              ps_putchar(struct termp *, char);
 static  void              ps_setfont(struct termp *, enum termfont);  static  void              ps_setfont(struct termp *, enum termfont);
 static  void              ps_setwidth(struct termp *, int, int);  static  void              ps_setwidth(struct termp *, int, int);
Line 1219  ps_endline(struct termp *p)
Line 1219  ps_endline(struct termp *p)
         }          }
   
         ps_closepage(p);          ps_closepage(p);
   
           p->offset -= p->ti;
           p->ti = 0;
 }  }
   
 static void  static void

Legend:
Removed from v.1.82  
changed lines
  Added in v.1.84

CVSweb