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

Diff for /src/usr.bin/tmux/tmux.h between version 1.1096 and 1.1097

version 1.1096, 2021/03/02 10:56:45 version 1.1097, 2021/03/11 06:31:05
Line 1862 
Line 1862 
 #define SPAWN_NONOTIFY 0x10  #define SPAWN_NONOTIFY 0x10
 #define SPAWN_FULLSIZE 0x20  #define SPAWN_FULLSIZE 0x20
 #define SPAWN_EMPTY 0x40  #define SPAWN_EMPTY 0x40
   #define SPAWN_ZOOM 0x80
 };  };
   
 /* Mode tree sort order. */  /* Mode tree sort order. */
Line 2752 
Line 2753 
 void             window_pane_send_resize(struct window_pane *, int);  void             window_pane_send_resize(struct window_pane *, int);
 int              window_zoom(struct window_pane *);  int              window_zoom(struct window_pane *);
 int              window_unzoom(struct window *);  int              window_unzoom(struct window *);
 int              window_push_zoom(struct window *, int);  int              window_push_zoom(struct window *, int, int);
 int              window_pop_zoom(struct window *);  int              window_pop_zoom(struct window *);
 void             window_lost_pane(struct window *, struct window_pane *);  void             window_lost_pane(struct window *, struct window_pane *);
 void             window_remove_pane(struct window *, struct window_pane *);  void             window_remove_pane(struct window *, struct window_pane *);
Line 2815 
Line 2816 
 void             layout_make_leaf(struct layout_cell *, struct window_pane *);  void             layout_make_leaf(struct layout_cell *, struct window_pane *);
 void             layout_make_node(struct layout_cell *, enum layout_type);  void             layout_make_node(struct layout_cell *, enum layout_type);
 void             layout_fix_offsets(struct window *);  void             layout_fix_offsets(struct window *);
 void             layout_fix_panes(struct window *);  void             layout_fix_panes(struct window *, struct window_pane *);
 void             layout_resize_adjust(struct window *, struct layout_cell *,  void             layout_resize_adjust(struct window *, struct layout_cell *,
                      enum layout_type, int);                       enum layout_type, int);
 void             layout_init(struct window *, struct window_pane *);  void             layout_init(struct window *, struct window_pane *);
Line 2825 
Line 2826 
                      int, int);                       int, int);
 void             layout_resize_pane_to(struct window_pane *, enum layout_type,  void             layout_resize_pane_to(struct window_pane *, enum layout_type,
                      u_int);                       u_int);
 void             layout_assign_pane(struct layout_cell *, struct window_pane *);  void             layout_assign_pane(struct layout_cell *, struct window_pane *,
                        int);
 struct layout_cell *layout_split_pane(struct window_pane *, enum layout_type,  struct layout_cell *layout_split_pane(struct window_pane *, enum layout_type,
                      int, int);                       int, int);
 void             layout_close_pane(struct window_pane *);  void             layout_close_pane(struct window_pane *);

Legend:
Removed from v.1.1096  
changed lines
  Added in v.1.1097