0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.1.2251: ":term command" may not work without a shell

Problem:    ":term command" may not work without a shell.
Solution:   Add the ++shell option to :term. (closes #3340)
This commit is contained in:
Bram Moolenaar
2019-11-03 23:37:12 +01:00
parent 30efcf3d26
commit 197c6b7da3
6 changed files with 52 additions and 10 deletions

View File

@@ -4299,10 +4299,10 @@ may_send_sigint(int c UNUSED, pid_t pid UNUSED, pid_t wpid UNUSED)
# endif
}
#if !defined(USE_SYSTEM) || (defined(FEAT_GUI) && defined(FEAT_TERMINAL))
#if !defined(USE_SYSTEM) || defined(FEAT_TERMINAL) || defined(PROTO)
static int
build_argv(
int
unix_build_argv(
char_u *cmd,
char ***argvp,
char_u **sh_tofree,
@@ -4369,7 +4369,7 @@ mch_call_shell_terminal(
aco_save_T aco;
oparg_T oa; /* operator arguments */
if (build_argv(cmd, &argv, &tofree1, &tofree2) == FAIL)
if (unix_build_argv(cmd, &argv, &tofree1, &tofree2) == FAIL)
goto theend;
init_job_options(&opt);
@@ -4546,7 +4546,7 @@ mch_call_shell_fork(
if (options & SHELL_COOKED)
settmode(TMODE_COOK); /* set to normal mode */
if (build_argv(cmd, &argv, &tofree1, &tofree2) == FAIL)
if (unix_build_argv(cmd, &argv, &tofree1, &tofree2) == FAIL)
goto error;
/*