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

Diff for /src/usr.bin/tmux/window-copy.c between version 1.272 and 1.273

version 1.272, 2020/04/14 18:33:01 version 1.273, 2020/04/14 19:07:10
Line 130 
Line 130 
 static void     window_copy_move_mouse(struct mouse_event *);  static void     window_copy_move_mouse(struct mouse_event *);
 static void     window_copy_drag_update(struct client *, struct mouse_event *);  static void     window_copy_drag_update(struct client *, struct mouse_event *);
 static void     window_copy_drag_release(struct client *, struct mouse_event *);  static void     window_copy_drag_release(struct client *, struct mouse_event *);
 static struct screen *window_copy_clone_screen(struct screen *,  
                     struct screen *);  
   
 const struct window_mode window_copy_mode = {  const struct window_mode window_copy_mode = {
         .name = "copy-mode",          .name = "copy-mode",
Line 322 
Line 320 
         }          }
   
         screen_write_start(&ctx, NULL, dst);          screen_write_start(&ctx, NULL, dst);
         screen_write_cursormove(&ctx, 0, dst->grid->sy - 1, 0);          screen_write_cursormove(&ctx, 0, dst->grid->sy + sy - dy - 1, 0);
         screen_write_stop(&ctx);          screen_write_stop(&ctx);
   
         return (dst);          return (dst);

Legend:
Removed from v.1.272  
changed lines
  Added in v.1.273