diff options
author | 2021-03-02 10:56:45 +0000 | |
---|---|---|
committer | 2021-03-02 10:56:45 +0000 | |
commit | 309e64039e3e18962adf4f1dc88c631caae428a2 (patch) | |
tree | 797312e13a30f8f04701367458af6af6afdb847c /usr.bin/tmux/cmd-if-shell.c | |
parent | Fix the deadlock between uvn_io() and uvn_flush() by restarting the fault. (diff) | |
download | wireguard-openbsd-309e64039e3e18962adf4f1dc88c631caae428a2.tar.xz wireguard-openbsd-309e64039e3e18962adf4f1dc88c631caae428a2.zip |
Drop support for popups where the content is provided directly to tmux
(which does not have many practical uses) and only support running a
program in the popup. display-popup is now simpler and can accept
multiple arguments to avoid escaping problems (like the other commands).
Diffstat (limited to 'usr.bin/tmux/cmd-if-shell.c')
-rw-r--r-- | usr.bin/tmux/cmd-if-shell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-if-shell.c b/usr.bin/tmux/cmd-if-shell.c index 1dd7878264c..7c1cee1f310 100644 --- a/usr.bin/tmux/cmd-if-shell.c +++ b/usr.bin/tmux/cmd-if-shell.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-if-shell.c,v 1.74 2020/04/13 20:51:57 nicm Exp $ */ +/* $OpenBSD: cmd-if-shell.c,v 1.75 2021/03/02 10:56:45 nicm Exp $ */ /* * Copyright (c) 2009 Tiago Cunha <me@tiagocunha.org> @@ -128,7 +128,7 @@ cmd_if_shell_exec(struct cmd *self, struct cmdq_item *item) cdata->input.c->references++; cmd_find_copy_state(&cdata->input.fs, target); - if (job_run(shellcmd, s, + if (job_run(shellcmd, 0, NULL, s, server_client_get_cwd(cmdq_get_client(item), s), NULL, cmd_if_shell_callback, cmd_if_shell_free, cdata, 0, -1, -1) == NULL) { |