[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.19 and 1.20

version 1.19, 2012/01/21 08:40:09 version 1.20, 2012/01/29 09:37:02
Line 48 
Line 48 
 const char *options_table_status_justify_list[] = {  const char *options_table_status_justify_list[] = {
         "left", "centre", "right", NULL          "left", "centre", "right", NULL
 };  };
   const char *options_table_status_position_list[] = {
           "top", "bottom", NULL
   };
 const char *options_table_bell_action_list[] = {  const char *options_table_bell_action_list[] = {
         "none", "any", "current", NULL          "none", "any", "current", NULL
 };  };
Line 357 
Line 360 
           .minimum = 0,            .minimum = 0,
           .maximum = SHRT_MAX,            .maximum = SHRT_MAX,
           .default_num = 10            .default_num = 10
           },
   
           { .name = "status-position",
             .type = OPTIONS_TABLE_CHOICE,
             .choices = options_table_status_position_list,
             .default_num = 1
         },          },
   
         { .name = "status-right",          { .name = "status-right",

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20