[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.832 and 1.833

version 1.832, 2018/08/02 07:55:16 version 1.833, 2018/08/02 11:18:34
Line 19 
Line 19 
 #ifndef TMUX_H  #ifndef TMUX_H
 #define TMUX_H  #define TMUX_H
   
 #define PROTOCOL_VERSION 8  
   
 #include <sys/time.h>  #include <sys/time.h>
 #include <sys/queue.h>  #include <sys/queue.h>
 #include <sys/tree.h>  #include <sys/tree.h>
Line 54 
Line 52 
 struct tmuxpeer;  struct tmuxpeer;
 struct tmuxproc;  struct tmuxproc;
   
   /* Client-server protocol version. */
   #define PROTOCOL_VERSION 8
   
 /* Default global configuration file. */  /* Default global configuration file. */
 #define TMUX_CONF "/etc/tmux.conf"  #define TMUX_CONF "/etc/tmux.conf"
   
Line 821 
Line 822 
         int              flags;          int              flags;
 #define WINDOW_BELL 0x1  #define WINDOW_BELL 0x1
 #define WINDOW_ACTIVITY 0x2  #define WINDOW_ACTIVITY 0x2
 /* 0x4 unused */  #define WINDOW_SILENCE 0x4
 #define WINDOW_SILENCE 0x8  #define WINDOW_ZOOMED 0x8
 #define WINDOW_ZOOMED 0x1000  #define WINDOW_FORCEWIDTH 0x10
 #define WINDOW_FORCEWIDTH 0x2000  #define WINDOW_FORCEHEIGHT 0x20
 #define WINDOW_FORCEHEIGHT 0x4000  #define WINDOW_STYLECHANGED 0x40
 #define WINDOW_STYLECHANGED 0x8000  
 #define WINDOW_ALERTFLAGS (WINDOW_BELL|WINDOW_ACTIVITY|WINDOW_SILENCE)  #define WINDOW_ALERTFLAGS (WINDOW_BELL|WINDOW_ACTIVITY|WINDOW_SILENCE)
   
         int              alerts_queued;          int              alerts_queued;
Line 1403 
Line 1403 
 RB_HEAD(key_bindings, key_binding);  RB_HEAD(key_bindings, key_binding);
   
 struct key_table {  struct key_table {
         const char               *name;          const char              *name;
         struct key_bindings      key_bindings;          struct key_bindings      key_bindings;
   
         u_int                    references;          u_int                    references;
Line 1424 
Line 1424 
         OPTIONS_TABLE_STYLE,          OPTIONS_TABLE_STYLE,
         OPTIONS_TABLE_ARRAY,          OPTIONS_TABLE_ARRAY,
 };  };
   
 enum options_table_scope {  enum options_table_scope {
         OPTIONS_TABLE_NONE,          OPTIONS_TABLE_NONE,
         OPTIONS_TABLE_SERVER,          OPTIONS_TABLE_SERVER,

Legend:
Removed from v.1.832  
changed lines
  Added in v.1.833