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

Diff for /src/usr.bin/tmux/cmd-set-option.c between version 1.75 and 1.76

version 1.75, 2015/06/04 14:29:33 version 1.76, 2015/07/27 08:45:45
Line 110 
Line 110 
         /* Find the option entry, try each table. */          /* Find the option entry, try each table. */
         table = oe = NULL;          table = oe = NULL;
         if (options_table_find(optstr, &table, &oe) != 0) {          if (options_table_find(optstr, &table, &oe) != 0) {
                 cmdq_error(cmdq, "ambiguous option: %s", optstr);                  if (!args_has(args, 'q')) {
                 return (CMD_RETURN_ERROR);                          cmdq_error(cmdq, "ambiguous option: %s", optstr);
                           return (CMD_RETURN_ERROR);
                   }
                   return (CMD_RETURN_NORMAL);
         }          }
         if (oe == NULL) {          if (oe == NULL) {
                 if (!args_has(args, 'q')) {                  if (!args_has(args, 'q')) {

Legend:
Removed from v.1.75  
changed lines
  Added in v.1.76