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

Diff for /src/usr.bin/tmux/screen.c between version 1.64 and 1.65

version 1.64, 2020/04/18 15:12:28 version 1.65, 2020/04/18 17:20:25
Line 227 
Line 227 
 {  {
         u_int   tcx, tcy;          u_int   tcx, tcy;
   
         if (s->write_list != NULL) {          if (s->write_list != NULL)
                 screen_write_free_list(s);                  screen_write_free_list(s);
                 s->write_list = NULL;  
         }  
   
         if (cx == NULL)          if (cx == NULL)
                 cx = &tcx;                  cx = &tcx;
Line 270 
Line 268 
         }          }
         log_debug("%s: cursor finished at %u,%u = %u,%u", __func__, s->cx,          log_debug("%s: cursor finished at %u,%u = %u,%u", __func__, s->cx,
             s->cy, *cx, *cy);              s->cy, *cx, *cy);
   
           if (s->write_list != NULL)
                   screen_write_make_list(s);
 }  }
   
 /* Resize screen. */  /* Resize screen. */

Legend:
Removed from v.1.64  
changed lines
  Added in v.1.65