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

Diff for /src/usr.bin/tmux/cmd-pipe-pane.c between version 1.52 and 1.53

version 1.52, 2020/04/13 08:26:27 version 1.53, 2020/04/13 10:59:58
Line 57 
Line 57 
 cmd_pipe_pane_exec(struct cmd *self, struct cmdq_item *item)  cmd_pipe_pane_exec(struct cmd *self, struct cmdq_item *item)
 {  {
         struct args             *args = cmd_get_args(self);          struct args             *args = cmd_get_args(self);
           struct cmd_find_state   *target = cmdq_get_target(item);
         struct client           *c = cmd_find_client(item, NULL, 1);          struct client           *c = cmd_find_client(item, NULL, 1);
         struct window_pane      *wp = item->target.wp;          struct window_pane      *wp = target->wp;
         struct session          *s = item->target.s;          struct session          *s = target->s;
         struct winlink          *wl = item->target.wl;          struct winlink          *wl = target->wl;
         char                    *cmd;          char                    *cmd;
         int                      old_fd, pipe_fd[2], null_fd, in, out;          int                      old_fd, pipe_fd[2], null_fd, in, out;
         struct format_tree      *ft;          struct format_tree      *ft;
Line 108 
Line 109 
         }          }
   
         /* Expand the command. */          /* Expand the command. */
         ft = format_create(item->client, item, FORMAT_NONE, 0);          ft = format_create(cmdq_get_client(item), item, FORMAT_NONE, 0);
         format_defaults(ft, c, s, wl, wp);          format_defaults(ft, c, s, wl, wp);
         cmd = format_expand_time(ft, args->argv[0]);          cmd = format_expand_time(ft, args->argv[0]);
         format_free(ft);          format_free(ft);

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