[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.817 and 1.818

version 1.817, 2018/02/04 10:10:39 version 1.818, 2018/02/05 08:21:54
Line 1312 
Line 1312 
         enum cmd_retval  (*exec)(struct cmd *, struct cmdq_item *);          enum cmd_retval  (*exec)(struct cmd *, struct cmdq_item *);
 };  };
   
   /* Status line. */
   struct status_line {
           struct event     timer;
           struct screen    status;
           struct screen   *old_status;
   };
   
 /* Client connection. */  /* Client connection. */
 typedef int (*prompt_input_cb)(struct client *, void *, const char *, int);  typedef int (*prompt_input_cb)(struct client *, void *, const char *, int);
 typedef void (*prompt_free_cb)(void *);  typedef void (*prompt_free_cb)(void *);
Line 1354 
Line 1361 
         struct event     click_timer;          struct event     click_timer;
         u_int            click_button;          u_int            click_button;
   
         struct event     status_timer;          struct status_line status;
         struct screen    status;  
   
         struct screen   *old_status;  
   
 #define CLIENT_TERMINAL 0x1  #define CLIENT_TERMINAL 0x1
 #define CLIENT_LOGIN 0x2  #define CLIENT_LOGIN 0x2

Legend:
Removed from v.1.817  
changed lines
  Added in v.1.818