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

Diff for /src/usr.bin/tmux/format.c between version 1.115 and 1.116

version 1.115, 2017/01/11 16:09:57 version 1.116, 2017/01/15 20:48:41
Line 620 
Line 620 
 format_find(struct format_tree *ft, const char *key, int modifiers)  format_find(struct format_tree *ft, const char *key, int modifiers)
 {  {
         struct format_entry     *fe, fe_find;          struct format_entry     *fe, fe_find;
         struct options_entry    *o;  
         struct environ_entry    *envent;          struct environ_entry    *envent;
         static char              s[64];          static char              s[64];
           struct option           *o;
         const char              *found;          const char              *found;
           int                      idx;
         char                    *copy, *saved;          char                    *copy, *saved;
   
         found = NULL;  
   
         if (~modifiers & FORMAT_TIMESTRING) {          if (~modifiers & FORMAT_TIMESTRING) {
                 o = options_find(global_options, key);                  o = options_parse_get(global_options, key, &idx, 0);
                 if (o == NULL && ft->w != NULL)                  if (o == NULL && ft->w != NULL)
                         o = options_find(ft->w->options, key);                          o = options_parse_get(ft->w->options, key, &idx, 0);
                 if (o == NULL)                  if (o == NULL)
                         o = options_find(global_w_options, key);                          o = options_parse_get(global_w_options, key, &idx, 0);
                 if (o == NULL && ft->s != NULL)                  if (o == NULL && ft->s != NULL)
                         o = options_find(ft->s->options, key);                          o = options_parse_get(ft->s->options, key, &idx, 0);
                 if (o == NULL)                  if (o == NULL)
                         o = options_find(global_s_options, key);                          o = options_parse_get(global_s_options, key, &idx, 0);
                 if (o != NULL) {                  if (o != NULL) {
                         switch (o->type) {                          found = options_tostring(o, idx);
                         case OPTIONS_STRING:                          goto found;
                                 found = o->str;  
                                 goto found;  
                         case OPTIONS_NUMBER:  
                                 xsnprintf(s, sizeof s, "%lld", o->num);  
                                 found = s;  
                                 goto found;  
                         case OPTIONS_STYLE:  
                                 found = style_tostring(&o->style);  
                                 goto found;  
                         }  
                 }                  }
         }          }
           found = NULL;
   
         fe_find.key = (char *) key;          fe_find.key = (char *) key;
         fe = RB_FIND(format_entry_tree, &ft->tree, &fe_find);          fe = RB_FIND(format_entry_tree, &ft->tree, &fe_find);

Legend:
Removed from v.1.115  
changed lines
  Added in v.1.116