aboutsummaryrefslogtreecommitdiff
path: root/src/misc1.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc1.c')
-rw-r--r--src/misc1.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/misc1.c b/src/misc1.c
index 8b96bb2235..1fbc14885d 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -49,6 +49,7 @@
#include "undo.h"
#include "window.h"
#include "os/os.h"
+#include "os/shell.h"
static char_u *vim_version_dir(char_u *vimdir);
static char_u *remove_tail(char_u *p, char_u *pend, char_u *name);
static void init_users(void);
@@ -3670,7 +3671,7 @@ get_cmd_output (
* Don't check timestamps here.
*/
++no_check_timestamps;
- call_shell(command, SHELL_DOOUT | SHELL_EXPAND | flags, NULL);
+ call_shell(command, kShellOptDoOut | kShellOptExpand | flags, NULL);
--no_check_timestamps;
vim_free(command);