[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.698 and 1.699

version 1.698, 2017/01/15 22:00:56 version 1.699, 2017/01/16 14:49:14
Line 47 
Line 47 
 struct mode_key_cmdstr;  struct mode_key_cmdstr;
 struct mouse_event;  struct mouse_event;
 struct options;  struct options;
   struct options_entry;
 struct session;  struct session;
 struct tmuxpeer;  struct tmuxpeer;
 struct tmuxproc;  struct tmuxproc;
Line 1447 
Line 1448 
 };  };
 RB_HEAD(key_tables, key_table);  RB_HEAD(key_tables, key_table);
   
 /*  /* Option table entries. */
  * Option table entries. The option table is the user-visible part of the  
  * option, as opposed to the internal options (struct option) which are just  
  * number or string.  
  */  
 enum options_table_type {  enum options_table_type {
         OPTIONS_TABLE_STRING,          OPTIONS_TABLE_STRING,
         OPTIONS_TABLE_NUMBER,          OPTIONS_TABLE_NUMBER,
Line 1607 
Line 1604 
 /* options.c */  /* options.c */
 struct options  *options_create(struct options *);  struct options  *options_create(struct options *);
 void             options_free(struct options *);  void             options_free(struct options *);
 struct option   *options_first(struct options *);  struct options_entry *options_first(struct options *);
 struct option   *options_next(struct option *);  struct options_entry *options_next(struct options_entry *);
 struct option   *options_empty(struct options *,  struct options_entry *options_empty(struct options *,
                      const struct options_table_entry *);                       const struct options_table_entry *);
 struct option   *options_default(struct options *,  struct options_entry *options_default(struct options *,
                      const struct options_table_entry *);                       const struct options_table_entry *);
 const char      *options_name(struct option *);  const char      *options_name(struct options_entry *);
 const struct options_table_entry *options_table_entry(struct option *);  const struct options_table_entry *options_table_entry(struct options_entry *);
 struct option   *options_get_only(struct options *, const char *);  struct options_entry *options_get_only(struct options *, const char *);
 struct option   *options_get(struct options *, const char *);  struct options_entry *options_get(struct options *, const char *);
 void             options_remove(struct option *);  void             options_remove(struct options_entry *);
 const char      *options_array_get(struct option *, u_int);  const char      *options_array_get(struct options_entry *, u_int);
 int              options_array_set(struct option *, u_int, const char *);  int              options_array_set(struct options_entry *, u_int, const char *);
 int              options_array_size(struct option *, u_int *);  int              options_array_size(struct options_entry *, u_int *);
 int              options_isstring(struct option *);  int              options_isstring(struct options_entry *);
 const char      *options_tostring(struct option *, int);  const char      *options_tostring(struct options_entry *, int);
 char            *options_parse(const char *, int *);  char            *options_parse(const char *, int *);
 struct option   *options_parse_get(struct options *, const char *, int *,  struct options_entry *options_parse_get(struct options *, const char *, int *,
                     int);                      int);
 char            *options_match(const char *, int *, int *);  char            *options_match(const char *, int *, int *);
 struct option   *options_match_get(struct options *, const char *, int *,  struct options_entry *options_match_get(struct options *, const char *, int *,
                     int, int *);                      int, int *);
 const char      *options_get_string(struct options *, const char *);  const char      *options_get_string(struct options *, const char *);
 long long        options_get_number(struct options *, const char *);  long long        options_get_number(struct options *, const char *);
 const struct grid_cell *options_get_style(struct options *, const char *);  const struct grid_cell *options_get_style(struct options *, const char *);
 struct option * printflike(4, 5) options_set_string(struct options *,  struct options_entry * printflike(4, 5) options_set_string(struct options *,
                      const char *, int, const char *, ...);                       const char *, int, const char *, ...);
 struct option   *options_set_number(struct options *, const char *, long long);  struct options_entry *options_set_number(struct options *, const char *,
 struct option   *options_set_style(struct options *, const char *, int,                       long long);
   struct options_entry *options_set_style(struct options *, const char *, int,
                      const char *);                       const char *);
 enum options_table_scope options_scope_from_flags(struct args *, int,  enum options_table_scope options_scope_from_flags(struct args *, int,
                      struct cmd_find_state *, struct options **, char **);                       struct cmd_find_state *, struct options **, char **);
 void             options_style_update_new(struct options *, struct option *);  void             options_style_update_new(struct options *,
 void             options_style_update_old(struct options *, struct option *);                       struct options_entry *);
   void             options_style_update_old(struct options *,
                        struct options_entry *);
   
 /* options-table.c */  /* options-table.c */
 extern const struct options_table_entry options_table[];  extern const struct options_table_entry options_table[];
Line 1823 
Line 1823 
 void printflike(2, 3) cmdq_error(struct cmdq_item *, const char *, ...);  void printflike(2, 3) cmdq_error(struct cmdq_item *, const char *, ...);
   
 /* cmd-string.c */  /* cmd-string.c */
   int              cmd_string_split(const char *, int *, char ***);
 struct cmd_list *cmd_string_parse(const char *, const char *, u_int, char **);  struct cmd_list *cmd_string_parse(const char *, const char *, u_int, char **);
   
 /* cmd-wait-for.c */  /* cmd-wait-for.c */

Legend:
Removed from v.1.698  
changed lines
  Added in v.1.699