[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.71 and 1.72

version 1.71, 2016/01/19 15:59:12 version 1.72, 2016/04/29 15:00:48
Line 51 
Line 51 
 const char *options_table_bell_action_list[] = {  const char *options_table_bell_action_list[] = {
         "none", "any", "current", "other", NULL          "none", "any", "current", "other", NULL
 };  };
   const char *options_table_pane_status_list[] = {
           "off", "top", "bottom", NULL
   };
   
 /* Server options. */  /* Server options. */
 const struct options_table_entry options_table[] = {  const struct options_table_entry options_table[] = {
Line 691 
Line 694 
           .scope = OPTIONS_TABLE_WINDOW,            .scope = OPTIONS_TABLE_WINDOW,
           .default_num = 8,            .default_num = 8,
           .style = "pane-border-style"            .style = "pane-border-style"
           },
   
           { .name = "pane-border-format",
             .type = OPTIONS_TABLE_STRING,
             .scope = OPTIONS_TABLE_WINDOW,
             .default_str = "#{?pane_active,#[reverse],}#{pane_index}#[default] \"#{pane_title}\""
           },
   
           { .name = "pane-border-status",
             .type = OPTIONS_TABLE_CHOICE,
             .scope = OPTIONS_TABLE_WINDOW,
             .choices = options_table_pane_status_list,
             .default_num = 0
         },          },
   
         { .name = "pane-border-style",          { .name = "pane-border-style",

Legend:
Removed from v.1.71  
changed lines
  Added in v.1.72