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

Diff for /src/usr.bin/tmux/status.c between version 1.141 and 1.142

version 1.141, 2015/11/18 14:27:44 version 1.142, 2015/11/20 12:01:19
Line 1205 
Line 1205 
                         list[(*size)++] = (*cmdent)->name;                          list[(*size)++] = (*cmdent)->name;
                 }                  }
         }          }
         for (oe = server_options_table; oe->name != NULL; oe++) {          for (oe = options_table; oe->name != NULL; oe++) {
                 if (strncmp(oe->name, s, strlen(s)) == 0) {  
                         list = xreallocarray(list, (*size) + 1, sizeof *list);  
                         list[(*size)++] = oe->name;  
                 }  
         }  
         for (oe = session_options_table; oe->name != NULL; oe++) {  
                 if (strncmp(oe->name, s, strlen(s)) == 0) {  
                         list = xreallocarray(list, (*size) + 1, sizeof *list);  
                         list[(*size)++] = oe->name;  
                 }  
         }  
         for (oe = window_options_table; oe->name != NULL; oe++) {  
                 if (strncmp(oe->name, s, strlen(s)) == 0) {                  if (strncmp(oe->name, s, strlen(s)) == 0) {
                         list = xreallocarray(list, (*size) + 1, sizeof *list);                          list = xreallocarray(list, (*size) + 1, sizeof *list);
                         list[(*size)++] = oe->name;                          list[(*size)++] = oe->name;

Legend:
Removed from v.1.141  
changed lines
  Added in v.1.142