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

Diff for /src/usr.bin/tmux/cmd-find.c between version 1.70 and 1.71

version 1.70, 2019/03/12 13:14:04 version 1.71, 2019/03/15 15:20:00
Line 1264 
Line 1264 
   
 no_session:  no_session:
         if (~flags & CMD_FIND_QUIET)          if (~flags & CMD_FIND_QUIET)
                 cmdq_error(item, "can't find session %s", session);                  cmdq_error(item, "can't find session: %s", session);
         goto error;          goto error;
   
 no_window:  no_window:
         if (~flags & CMD_FIND_QUIET)          if (~flags & CMD_FIND_QUIET)
                 cmdq_error(item, "can't find window %s", window);                  cmdq_error(item, "can't find window: %s", window);
         goto error;          goto error;
   
 no_pane:  no_pane:
         if (~flags & CMD_FIND_QUIET)          if (~flags & CMD_FIND_QUIET)
                 cmdq_error(item, "can't find pane %s", pane);                  cmdq_error(item, "can't find pane: %s", pane);
         goto error;          goto error;
 }  }
   
Line 1344 
Line 1344 
   
         /* If no client found, report an error. */          /* If no client found, report an error. */
         if (c == NULL && !quiet)          if (c == NULL && !quiet)
                 cmdq_error(item, "can't find client %s", copy);                  cmdq_error(item, "can't find client: %s", copy);
   
         free(copy);          free(copy);
         log_debug("%s: target %s, return %p", __func__, target, c);          log_debug("%s: target %s, return %p", __func__, target, c);

Legend:
Removed from v.1.70  
changed lines
  Added in v.1.71