[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.179 and 1.180

version 1.179, 2020/05/16 16:02:24 version 1.180, 2020/05/16 16:22:01
Line 184 
Line 184 
         }          }
   
         if (ctx->wp != NULL &&          if (ctx->wp != NULL &&
             !ctx->sync &&              (~ctx->flags & SCREEN_WRITE_SYNC) &&
             (sync || ctx->wp != ctx->wp->window->active)) {              (sync || ctx->wp != ctx->wp->window->active)) {
                 tty_write(tty_cmd_syncstart, ttyctx);                  tty_write(tty_cmd_syncstart, ttyctx);
                 ctx->sync = 1;                  ctx->flags |= SCREEN_WRITE_SYNC;
         }          }
 }  }
   

Legend:
Removed from v.1.179  
changed lines
  Added in v.1.180