mirror of
https://github.com/tmux/tmux.git
synced 2024-11-19 19:08:50 +00:00
Fix run-shell -d with no command, GitHub issue 2885.
This commit is contained in:
parent
a19cac5c46
commit
3c3d371f99
@ -181,7 +181,13 @@ cmd_run_shell_timer(__unused int fd, __unused short events, void* arg)
|
||||
struct cmd_list *cmdlist;
|
||||
char *error;
|
||||
|
||||
if (cdata->state == NULL && cmd != NULL) {
|
||||
if (cdata->state == NULL) {
|
||||
if (cmd == NULL) {
|
||||
if (cdata->item != NULL)
|
||||
cmdq_continue(cdata->item);
|
||||
cmd_run_shell_free(cdata);
|
||||
return;
|
||||
}
|
||||
if (job_run(cmd, 0, NULL, cdata->s, cdata->cwd, NULL,
|
||||
cmd_run_shell_callback, cmd_run_shell_free, cdata,
|
||||
cdata->flags, -1, -1) == NULL)
|
||||
|
Loading…
Reference in New Issue
Block a user