[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.51 and 1.52

version 1.51, 2017/04/21 20:26:34 version 1.52, 2017/04/21 20:34:05
Line 158 
Line 158 
         shared = xcalloc(1, sizeof *shared);          shared = xcalloc(1, sizeof *shared);
         if (current != NULL)          if (current != NULL)
                 cmd_find_copy_state(&shared->current, current);                  cmd_find_copy_state(&shared->current, current);
           else
                   cmd_find_clear_state(&shared->current, 0);
         if (m != NULL)          if (m != NULL)
                 memcpy(&shared->mouse, m, sizeof shared->mouse);                  memcpy(&shared->mouse, m, sizeof shared->mouse);
   
Line 205 
Line 207 
                 retval = CMD_RETURN_ERROR;                  retval = CMD_RETURN_ERROR;
                 goto out;                  goto out;
         }          }
   
         if (item->client == NULL)          if (item->client == NULL)
                 item->client = cmd_find_client(item, NULL, 1);                  item->client = cmd_find_client(item, NULL, 1);
   

Legend:
Removed from v.1.51  
changed lines
  Added in v.1.52