[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.49 and 1.50

version 1.49, 2011/04/17 19:21:19 version 1.50, 2011/05/18 20:24:29
Line 1195 
Line 1195 
 }  }
   
 void  void
   screen_write_setselection(struct screen_write_ctx *ctx, u_char *str, u_int len)
   {
           struct tty_ctx  ttyctx;
   
           screen_write_initctx(ctx, &ttyctx, 0);
           ttyctx.ptr = str;
           ttyctx.num = len;
   
           tty_write(tty_cmd_setselection, &ttyctx);
   }
   
   void
 screen_write_rawstring(struct screen_write_ctx *ctx, u_char *str, u_int len)  screen_write_rawstring(struct screen_write_ctx *ctx, u_char *str, u_int len)
 {  {
         struct tty_ctx           ttyctx;          struct tty_ctx           ttyctx;

Legend:
Removed from v.1.49  
changed lines
  Added in v.1.50