diff options
author | nicm <nicm> | 2015-12-16 21:50:37 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-12-16 21:50:37 +0000 |
commit | 021c64310daa4ae4c4e8af08f17c994f21237758 (patch) | |
tree | 7f0556b343bba058dec19c87c8f52f215cdbd2eb /cmd-respawn-window.c | |
parent | 8eb1a7d5dc8d66ca7d17c72e4d8d0e58d6fd2824 (diff) | |
download | rtmux-021c64310daa4ae4c4e8af08f17c994f21237758.tar.gz rtmux-021c64310daa4ae4c4e8af08f17c994f21237758.tar.bz2 rtmux-021c64310daa4ae4c4e8af08f17c994f21237758.zip |
Add infrastructure to work out the best target given a pane or window
alone and use it to add pane_died and pane_exited hooks.
Diffstat (limited to 'cmd-respawn-window.c')
-rw-r--r-- | cmd-respawn-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-respawn-window.c b/cmd-respawn-window.c index aa4e169b..da9a365a 100644 --- a/cmd-respawn-window.c +++ b/cmd-respawn-window.c @@ -90,7 +90,7 @@ cmd_respawn_window_exec(struct cmd *self, struct cmd_q *cmdq) cmdq_error(cmdq, "respawn window failed: %s", cause); free(cause); environ_free(env); - server_destroy_pane(wp); + server_destroy_pane(wp, 0); return (CMD_RETURN_ERROR); } layout_init(w, wp); |