[BACK]Return to options-table.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/options-table.c between version 1.73 and 1.74

version 1.73, 2016/05/04 21:29:47 version 1.74, 2016/10/03 22:52:11
Line 33 
Line 33 
  */   */
   
 /* Choice option type lists. */  /* Choice option type lists. */
 const char *options_table_mode_keys_list[] = {  static const char *options_table_mode_keys_list[] = {
         "emacs", "vi", NULL          "emacs", "vi", NULL
 };  };
 const char *options_table_clock_mode_style_list[] = {  static const char *options_table_clock_mode_style_list[] = {
         "12", "24", NULL          "12", "24", NULL
 };  };
 const char *options_table_status_keys_list[] = {  static const char *options_table_status_keys_list[] = {
         "emacs", "vi", NULL          "emacs", "vi", NULL
 };  };
 const char *options_table_status_justify_list[] = {  static const char *options_table_status_justify_list[] = {
         "left", "centre", "right", NULL          "left", "centre", "right", NULL
 };  };
 const char *options_table_status_position_list[] = {  static const char *options_table_status_position_list[] = {
         "top", "bottom", NULL          "top", "bottom", NULL
 };  };
 const char *options_table_bell_action_list[] = {  static const char *options_table_bell_action_list[] = {
         "none", "any", "current", "other", NULL          "none", "any", "current", "other", NULL
 };  };
 const char *options_table_pane_status_list[] = {  static const char *options_table_pane_status_list[] = {
         "off", "top", "bottom", NULL          "off", "top", "bottom", NULL
 };  };
   

Legend:
Removed from v.1.73  
changed lines
  Added in v.1.74