diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2011-03-29 19:30:16 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2011-03-29 19:30:16 +0000 |
commit | d88c20e718f71acf146cb91eda2f818f37003ad0 (patch) | |
tree | ece102e67dfbb7fa22a061da4c4f4feec994c358 /cmd-pipe-pane.c | |
parent | f19a4bf9d1af2f512b841ca9dabdf81592e0f4ea (diff) | |
download | rtmux-d88c20e718f71acf146cb91eda2f818f37003ad0.tar.gz rtmux-d88c20e718f71acf146cb91eda2f818f37003ad0.tar.bz2 rtmux-d88c20e718f71acf146cb91eda2f818f37003ad0.zip |
Change -t on display-message to be target-pane for the #[A-Z]
replacements and add -c as target-client.
Diffstat (limited to 'cmd-pipe-pane.c')
-rw-r--r-- | cmd-pipe-pane.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd-pipe-pane.c b/cmd-pipe-pane.c index d0e47541..1f27e6d9 100644 --- a/cmd-pipe-pane.c +++ b/cmd-pipe-pane.c @@ -113,7 +113,8 @@ cmd_pipe_pane_exec(struct cmd *self, struct cmd_ctx *ctx) closefrom(STDERR_FILENO + 1); - command = status_replace(c, NULL, args->argv[0], time(NULL), 0); + command = status_replace( + c, NULL, NULL, NULL, args->argv[0], time(NULL), 0); execl(_PATH_BSHELL, "sh", "-c", command, (char *) NULL); _exit(1); default: |