[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.749 and 1.750

version 1.749, 2017/04/21 18:18:17 version 1.750, 2017/04/21 20:26:34
Line 1145 
Line 1145 
         CMD_FIND_SESSION,          CMD_FIND_SESSION,
 };  };
 struct cmd_find_state {  struct cmd_find_state {
         struct cmdq_item        *item;  
         int                      flags;          int                      flags;
         struct cmd_find_state   *current;          struct cmd_find_state   *current;
   
Line 1730 
Line 1729 
                      char **);                       char **);
   
 /* cmd-find.c */  /* cmd-find.c */
 int              cmd_find_current(struct cmd_find_state *, struct cmdq_item *,  int              cmd_find_target(struct cmd_find_state *, struct cmdq_item *,
                      int);                       const char *, enum cmd_find_type, int);
 int              cmd_find_target(struct cmd_find_state *,  
                      struct cmd_find_state *, struct cmdq_item *, const char *,  
                      enum cmd_find_type, int);  
 struct client   *cmd_find_client(struct cmdq_item *, const char *, int);  struct client   *cmd_find_client(struct cmdq_item *, const char *, int);
 void             cmd_find_clear_state(struct cmd_find_state *,  void             cmd_find_clear_state(struct cmd_find_state *, int);
                      struct cmdq_item *, int);  
 int              cmd_find_empty_state(struct cmd_find_state *);  int              cmd_find_empty_state(struct cmd_find_state *);
 int              cmd_find_valid_state(struct cmd_find_state *);  int              cmd_find_valid_state(struct cmd_find_state *);
 void             cmd_find_copy_state(struct cmd_find_state *,  void             cmd_find_copy_state(struct cmd_find_state *,
Line 1750 
Line 1745 
 int              cmd_find_from_session_window(struct cmd_find_state *,  int              cmd_find_from_session_window(struct cmd_find_state *,
                      struct session *, struct window *);                       struct session *, struct window *);
 int              cmd_find_from_window(struct cmd_find_state *, struct window *);  int              cmd_find_from_window(struct cmd_find_state *, struct window *);
 int              cmd_find_from_pane(struct cmd_find_state *,  
                      struct window_pane *);  
 void             cmd_find_from_winlink_pane(struct cmd_find_state *,  void             cmd_find_from_winlink_pane(struct cmd_find_state *,
                      struct winlink *, struct window_pane *);                       struct winlink *, struct window_pane *);
   int              cmd_find_from_pane(struct cmd_find_state *,
                        struct window_pane *);
   int              cmd_find_from_client(struct cmd_find_state *, struct client *);
   int              cmd_find_from_mouse(struct cmd_find_state *,
                        struct mouse_event *);
   int              cmd_find_from_nothing(struct cmd_find_state *);
   
 /* cmd.c */  /* cmd.c */
 int              cmd_pack_argv(int, char **, char *, size_t);  int              cmd_pack_argv(int, char **, char *, size_t);

Legend:
Removed from v.1.749  
changed lines
  Added in v.1.750