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

Diff for /src/usr.bin/tmux/cmd-queue.c between version 1.49 and 1.50

version 1.49, 2017/04/21 14:01:19 version 1.50, 2017/04/21 18:18:17
Line 206 
Line 206 
                 goto out;                  goto out;
         }          }
         if (item->client == NULL)          if (item->client == NULL)
                 item->client = cmd_find_client(item, NULL, CMD_FIND_QUIET);                  item->client = cmd_find_client(item, NULL, 1);
   
         retval = cmd->entry->exec(cmd, item);          retval = cmd->entry->exec(cmd, item);
         if (retval == CMD_RETURN_ERROR)          if (retval == CMD_RETURN_ERROR)
Line 325 
Line 325 
                         item->time = time(NULL);                          item->time = time(NULL);
                         item->number = ++number;                          item->number = ++number;
   
                         switch (item->type)                          switch (item->type) {
                         {  
                         case CMDQ_COMMAND:                          case CMDQ_COMMAND:
                                 retval = cmdq_fire_command(item);                                  retval = cmdq_fire_command(item);
   

Legend:
Removed from v.1.49  
changed lines
  Added in v.1.50