[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.70 and 1.71

version 1.70, 2020/04/18 06:20:50 version 1.71, 2020/04/18 07:32:53
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 563 
Line 564 
         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.70  
changed lines
  Added in v.1.71