[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.1075 and 1.1076

version 1.1075, 2020/07/27 08:03:10 version 1.1076, 2020/08/25 11:35:32
Line 1788 
Line 1788 
   
 struct options_table_entry {  struct options_table_entry {
         const char               *name;          const char               *name;
           const char               *alternative_name;
         enum options_table_type   type;          enum options_table_type   type;
         int                       scope;          int                       scope;
         int                       flags;          int                       flags;
Line 1807 
Line 1808 
         const char               *unit;          const char               *unit;
 };  };
   
   struct options_name_map {
           const char              *from;
           const char              *to;
   };
   
 /* Common command usages. */  /* Common command usages. */
 #define CMD_TARGET_PANE_USAGE "[-t target-pane]"  #define CMD_TARGET_PANE_USAGE "[-t target-pane]"
 #define CMD_TARGET_WINDOW_USAGE "[-t target-window]"  #define CMD_TARGET_WINDOW_USAGE "[-t target-window]"
Line 2039 
Line 2045 
                      char **);                       char **);
   
 /* options-table.c */  /* options-table.c */
 extern const struct options_table_entry options_table[];  extern const struct options_table_entry options_table[];
   extern const struct options_name_map    options_other_names[];
   
 /* job.c */  /* job.c */
 typedef void (*job_update_cb) (struct job *);  typedef void (*job_update_cb) (struct job *);

Legend:
Removed from v.1.1075  
changed lines
  Added in v.1.1076