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

Diff for /src/usr.bin/tmux/screen-redraw.c between version 1.71 and 1.72

version 1.71, 2020/04/18 07:32:53 version 1.72, 2020/04/18 21:35:32
Line 474 
Line 474 
         tty_sync_start(&c->tty);          tty_sync_start(&c->tty);
   
         screen_redraw_draw_pane(&ctx, wp);          screen_redraw_draw_pane(&ctx, wp);
         wp->flags &= ~PANE_REDRAW;  
   
         tty_reset(&c->tty);          tty_reset(&c->tty);
         tty_sync_end(&c->tty);          tty_sync_end(&c->tty);
Line 564 
Line 563 
         TAILQ_FOREACH(wp, &w->panes, entry) {          TAILQ_FOREACH(wp, &w->panes, entry) {
                 if (window_pane_visible(wp))                  if (window_pane_visible(wp))
                         screen_redraw_draw_pane(ctx, wp);                          screen_redraw_draw_pane(ctx, wp);
                 wp->flags &= ~PANE_REDRAW;  
         }          }
 }  }
   

Legend:
Removed from v.1.71  
changed lines
  Added in v.1.72