[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.91 and 1.92

version 1.91, 2009/08/25 12:18:51 version 1.92, 2009/08/31 20:46:19
Line 935 
Line 935 
 #define CLIENT_REPEAT 0x20      /* allow command to repeat within repeat time */  #define CLIENT_REPEAT 0x20      /* allow command to repeat within repeat time */
 #define CLIENT_SUSPENDED 0x40  #define CLIENT_SUSPENDED 0x40
 #define CLIENT_BAD 0x80  #define CLIENT_BAD 0x80
   #define CLIENT_IDENTIFY 0x100
         int              flags;          int              flags;
   
           struct timeval   identify_timer;
   
         char            *message_string;          char            *message_string;
         struct timeval   message_timer;          struct timeval   message_timer;
   
Line 1164 
Line 1167 
   
 /* tty.c */  /* tty.c */
 u_char  tty_get_acs(struct tty *, u_char);  u_char  tty_get_acs(struct tty *, u_char);
   void    tty_attributes(struct tty *, const struct grid_cell *);
 void    tty_reset(struct tty *);  void    tty_reset(struct tty *);
 void    tty_region(struct tty *, u_int, u_int, u_int);  void    tty_region(struct tty *, u_int, u_int, u_int);
 void    tty_cursor(struct tty *, u_int, u_int, u_int, u_int);  void    tty_cursor(struct tty *, u_int, u_int, u_int, u_int);
Line 1249 
Line 1253 
 int              paste_replace(struct paste_stack *, u_int, char *);  int              paste_replace(struct paste_stack *, u_int, char *);
   
 /* clock.c */  /* clock.c */
   extern const char clock_table[14][5][5];
 void             clock_draw(struct screen_write_ctx *, u_int, int);  void             clock_draw(struct screen_write_ctx *, u_int, int);
   
 /* cmd.c */  /* cmd.c */
Line 1285 
Line 1290 
 extern const struct cmd_entry cmd_delete_buffer_entry;  extern const struct cmd_entry cmd_delete_buffer_entry;
 extern const struct cmd_entry cmd_detach_client_entry;  extern const struct cmd_entry cmd_detach_client_entry;
 extern const struct cmd_entry cmd_display_message_entry;  extern const struct cmd_entry cmd_display_message_entry;
   extern const struct cmd_entry cmd_display_panes_entry;
 extern const struct cmd_entry cmd_down_pane_entry;  extern const struct cmd_entry cmd_down_pane_entry;
 extern const struct cmd_entry cmd_find_window_entry;  extern const struct cmd_entry cmd_find_window_entry;
 extern const struct cmd_entry cmd_has_session_entry;  extern const struct cmd_entry cmd_has_session_entry;
Line 1435 
Line 1441 
 void     server_lock(void);  void     server_lock(void);
 int      server_unlock(const char *);  int      server_unlock(const char *);
 void     server_kill_window(struct window *);  void     server_kill_window(struct window *);
   void     server_set_identify(struct client *);
   void     server_clear_identify(struct client *);
   
 /* status.c */  /* status.c */
 int      status_redraw(struct client *);  int      status_redraw(struct client *);

Legend:
Removed from v.1.91  
changed lines
  Added in v.1.92