[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.371 and 1.372

version 1.371, 2013/01/15 23:18:55 version 1.372, 2013/01/17 00:11:22
Line 974 
Line 974 
 TAILQ_HEAD(window_panes, window_pane);  TAILQ_HEAD(window_panes, window_pane);
 RB_HEAD(window_pane_tree, window_pane);  RB_HEAD(window_pane_tree, window_pane);
   
 /* Window last layout. */  
 struct last_layout {  
         char    *layout;  
   
         TAILQ_ENTRY(last_layout) entry;  
 };  
   
 /* Window structure. */  /* Window structure. */
 struct window {  struct window {
         u_int            id;          u_int            id;
Line 994 
Line 987 
   
         int              lastlayout;          int              lastlayout;
         struct layout_cell *layout_root;          struct layout_cell *layout_root;
         TAILQ_HEAD(last_layouts, last_layout) layout_list;  
         u_int            layout_list_size;  
         struct last_layout *layout_list_last;  
   
         u_int            sx;          u_int            sx;
         u_int            sy;          u_int            sy;
Line 2179 
Line 2169 
 struct layout_cell *layout_create_cell(struct layout_cell *);  struct layout_cell *layout_create_cell(struct layout_cell *);
 void             layout_free_cell(struct layout_cell *);  void             layout_free_cell(struct layout_cell *);
 void             layout_print_cell(struct layout_cell *, const char *, u_int);  void             layout_print_cell(struct layout_cell *, const char *, u_int);
 void             layout_destroy_cell(  void             layout_destroy_cell(struct layout_cell *, struct layout_cell **);
                      struct layout_cell *, struct layout_cell **);  
 void             layout_set_size(  void             layout_set_size(
                      struct layout_cell *, u_int, u_int, u_int, u_int);                       struct layout_cell *, u_int, u_int, u_int, u_int);
 void             layout_make_leaf(  void             layout_make_leaf(
Line 2201 
Line 2190 
 struct layout_cell *layout_split_pane(  struct layout_cell *layout_split_pane(
                      struct window_pane *, enum layout_type, int, int);                       struct window_pane *, enum layout_type, int, int);
 void             layout_close_pane(struct window_pane *);  void             layout_close_pane(struct window_pane *);
 void             layout_list_add(struct window *);  
 const char      *layout_list_redo(struct window *);  
 const char      *layout_list_undo(struct window *);  
   
 /* layout-custom.c */  /* layout-custom.c */
 char            *layout_dump(struct window *);  char            *layout_dump(struct window *);

Legend:
Removed from v.1.371  
changed lines
  Added in v.1.372