[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.500 and 1.501

version 1.500, 2015/04/25 18:09:28 version 1.501, 2015/04/25 18:33:59
Line 950 
Line 950 
 };  };
 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);
 ARRAY_DECL(window_pane_list, struct window_pane *);  
   
 /* Window structure. */  /* Window structure. */
 struct window {  struct window {
Line 1101 
Line 1100 
         RB_ENTRY(session)    entry;          RB_ENTRY(session)    entry;
 };  };
 RB_HEAD(sessions, session);  RB_HEAD(sessions, session);
 ARRAY_DECL(sessionslist, struct session *);  
   
 /* TTY information. */  /* TTY information. */
 struct tty_key {  struct tty_key {
Line 1255 
Line 1253 
 /* Saved message entry. */  /* Saved message entry. */
 struct message_entry {  struct message_entry {
         char   *msg;          char   *msg;
           u_int   msg_num;
         time_t  msg_time;          time_t  msg_time;
           TAILQ_ENTRY(message_entry) entry;
 };  };
   
 /* Status output data from a job. */  /* Status output data from a job. */
Line 1327 
Line 1327 
   
         char            *message_string;          char            *message_string;
         struct event     message_timer;          struct event     message_timer;
         ARRAY_DECL(, struct message_entry) message_log;          u_int            message_next;
           TAILQ_HEAD(, message_entry) message_log;
   
         char            *prompt_string;          char            *prompt_string;
         char            *prompt_buffer;          char            *prompt_buffer;

Legend:
Removed from v.1.500  
changed lines
  Added in v.1.501