[BACK]Return to screen-write.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/screen-write.c between version 1.100 and 1.101

version 1.100, 2016/10/18 08:39:18 version 1.101, 2016/12/09 21:39:27
Line 516 
Line 516 
         s->cy += ny;          s->cy += ny;
 }  }
   
 /* Cursor right by nx.  */  /* Cursor right by nx. */
 void  void
 screen_write_cursorright(struct screen_write_ctx *ctx, u_int nx)  screen_write_cursorright(struct screen_write_ctx *ctx, u_int nx)
 {  {
Line 839 
Line 839 
         tty_write(tty_cmd_clearstartofline, &ttyctx);          tty_write(tty_cmd_clearstartofline, &ttyctx);
 }  }
   
 /* Move cursor to px,py.  */  /* Move cursor to px,py. */
 void  void
 screen_write_cursormove(struct screen_write_ctx *ctx, u_int px, u_int py)  screen_write_cursormove(struct screen_write_ctx *ctx, u_int px, u_int py)
 {  {
Line 854 
Line 854 
         s->cy = py;          s->cy = py;
 }  }
   
 /* Reverse index (up with scroll).  */  /* Reverse index (up with scroll). */
 void  void
 screen_write_reverseindex(struct screen_write_ctx *ctx)  screen_write_reverseindex(struct screen_write_ctx *ctx)
 {  {

Legend:
Removed from v.1.100  
changed lines
  Added in v.1.101