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

Diff for /src/usr.bin/tmux/window-client.c between version 1.29 and 1.30

version 1.29, 2020/06/01 09:43:01 version 1.30, 2020/12/03 07:12:12
Line 30 
Line 30 
 static void              window_client_free(struct window_mode_entry *);  static void              window_client_free(struct window_mode_entry *);
 static void              window_client_resize(struct window_mode_entry *, u_int,  static void              window_client_resize(struct window_mode_entry *, u_int,
                              u_int);                               u_int);
   static void              window_client_update(struct window_mode_entry *);
 static void              window_client_key(struct window_mode_entry *,  static void              window_client_key(struct window_mode_entry *,
                              struct client *, struct session *,                               struct client *, struct session *,
                              struct winlink *, key_code, struct mouse_event *);                               struct winlink *, key_code, struct mouse_event *);
Line 59 
Line 60 
         .init = window_client_init,          .init = window_client_init,
         .free = window_client_free,          .free = window_client_free,
         .resize = window_client_resize,          .resize = window_client_resize,
           .update = window_client_update,
         .key = window_client_key,          .key = window_client_key,
 };  };
   
Line 309 
Line 311 
         struct window_client_modedata   *data = wme->data;          struct window_client_modedata   *data = wme->data;
   
         mode_tree_resize(data->data, sx, sy);          mode_tree_resize(data->data, sx, sy);
   }
   
   static void
   window_client_update(struct window_mode_entry *wme)
   {
           struct window_client_modedata   *data = wme->data;
   
           mode_tree_build(data->data);
           mode_tree_draw(data->data);
           data->wp->flags |= PANE_REDRAW;
 }  }
   
 static void  static void

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.30