[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.56 and 1.57

version 1.56, 2021/08/17 19:37:55 version 1.57, 2021/08/20 19:50:16
Line 82 
Line 82 
         }          }
   
         /* If no pipe command, that is enough. */          /* If no pipe command, that is enough. */
         if (args->argc == 0 || *args->argv[0] == '\0')          if (args_count(args) == 0 || *args_string(args, 0) == '\0')
                 return (CMD_RETURN_NORMAL);                  return (CMD_RETURN_NORMAL);
   
         /*          /*
Line 112 
Line 112 
         /* Expand the command. */          /* Expand the command. */
         ft = format_create(cmdq_get_client(item), item, FORMAT_NONE, 0);          ft = format_create(cmdq_get_client(item), item, FORMAT_NONE, 0);
         format_defaults(ft, tc, s, wl, wp);          format_defaults(ft, tc, s, wl, wp);
         cmd = format_expand_time(ft, args->argv[0]);          cmd = format_expand_time(ft, args_string(args, 0));
         format_free(ft);          format_free(ft);
   
         /* Fork the child. */          /* Fork the child. */

Legend:
Removed from v.1.56  
changed lines
  Added in v.1.57