[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.208 and 1.209

version 1.208, 2022/06/09 09:12:55 version 1.209, 2022/08/02 11:09:26
Line 2100 
Line 2100 
   
 /* Write unmodified string. */  /* Write unmodified string. */
 void  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,
       int allow_invisible_panes)
 {  {
         struct tty_ctx  ttyctx;          struct tty_ctx  ttyctx;
   
         screen_write_initctx(ctx, &ttyctx, 0);          screen_write_initctx(ctx, &ttyctx, 0);
         ttyctx.ptr = str;          ttyctx.ptr = str;
         ttyctx.num = len;          ttyctx.num = len;
           ttyctx.allow_invisible_panes = allow_invisible_panes;
   
         tty_write(tty_cmd_rawstring, &ttyctx);          tty_write(tty_cmd_rawstring, &ttyctx);
 }  }

Legend:
Removed from v.1.208  
changed lines
  Added in v.1.209