[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.179 and 1.180

version 1.179, 2009/11/13 19:58:32 version 1.180, 2009/11/18 13:16:33
Line 1041 
Line 1041 
         u_char  y;          u_char  y;
 };  };
   
   /* Saved message entry. */
   struct message_entry {
           char   *msg;
           time_t  msg_time;
   };
   
 /* Client connection. */  /* Client connection. */
 struct client {  struct client {
         struct imsgbuf   ibuf;          struct imsgbuf   ibuf;
Line 1077 
Line 1083 
   
         char            *message_string;          char            *message_string;
         struct event     message_timer;          struct event     message_timer;
           ARRAY_DECL(, struct message_entry) message_log;
   
         char            *prompt_string;          char            *prompt_string;
         char            *prompt_buffer;          char            *prompt_buffer;
Line 1481 
Line 1488 
 extern const struct cmd_entry cmd_set_window_option_entry;  extern const struct cmd_entry cmd_set_window_option_entry;
 extern const struct cmd_entry cmd_show_buffer_entry;  extern const struct cmd_entry cmd_show_buffer_entry;
 extern const struct cmd_entry cmd_show_environment_entry;  extern const struct cmd_entry cmd_show_environment_entry;
   extern const struct cmd_entry cmd_show_messages_entry;
 extern const struct cmd_entry cmd_show_options_entry;  extern const struct cmd_entry cmd_show_options_entry;
 extern const struct cmd_entry cmd_show_window_options_entry;  extern const struct cmd_entry cmd_show_window_options_entry;
 extern const struct cmd_entry cmd_source_file_entry;  extern const struct cmd_entry cmd_source_file_entry;

Legend:
Removed from v.1.179  
changed lines
  Added in v.1.180