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

Diff for /src/usr.bin/tmux/cmd-show-options.c between version 1.41 and 1.42

version 1.41, 2017/04/22 10:22:39 version 1.42, 2017/05/10 13:05:41
Line 128 
Line 128 
     struct options *oo)      struct options *oo)
 {  {
         struct args             *args = self->args;          struct args             *args = self->args;
           struct client           *c = cmd_find_client(item, NULL, 1);
           struct session          *s = item->target.s;
           struct winlink          *wl = item->target.wl;
         struct options_entry    *o;          struct options_entry    *o;
         int                      idx, ambiguous;          int                      idx, ambiguous;
         const char              *name = args->argv[0];          char                    *name;
   
           name = format_single(item, args->argv[0], c, s, wl, NULL);
         o = options_match_get(oo, name, &idx, 1, &ambiguous);          o = options_match_get(oo, name, &idx, 1, &ambiguous);
         if (o == NULL) {          if (o == NULL) {
                 if (args_has(args, 'q'))                  if (args_has(args, 'q')) {
                           free(name);
                         return (CMD_RETURN_NORMAL);                          return (CMD_RETURN_NORMAL);
                   }
                 if (ambiguous) {                  if (ambiguous) {
                         cmdq_error(item, "ambiguous option: %s", name);                          cmdq_error(item, "ambiguous option: %s", name);
                           free(name);
                         return (CMD_RETURN_ERROR);                          return (CMD_RETURN_ERROR);
                 }                  }
                 if (*name != '@' &&                  if (*name != '@' &&
                     options_match_get(oo, name, &idx, 0, &ambiguous) != NULL)                      options_match_get(oo, name, &idx, 0, &ambiguous) != NULL) {
                           free(name);
                         return (CMD_RETURN_NORMAL);                          return (CMD_RETURN_NORMAL);
                   }
                 cmdq_error(item, "unknown option: %s", name);                  cmdq_error(item, "unknown option: %s", name);
                   free(name);
                 return (CMD_RETURN_ERROR);                  return (CMD_RETURN_ERROR);
         }          }
         cmd_show_options_print(self, item, o, idx);          cmd_show_options_print(self, item, o, idx);
           free(name);
         return (CMD_RETURN_NORMAL);          return (CMD_RETURN_NORMAL);
 }  }
   

Legend:
Removed from v.1.41  
changed lines
  Added in v.1.42