diff options
Diffstat (limited to 'src/path.c')
-rw-r--r-- | src/path.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/path.c b/src/path.c index f643c8ec82..eceb5ca64d 100644 --- a/src/path.c +++ b/src/path.c @@ -9,6 +9,7 @@ #include "misc1.h" #include "misc2.h" #include "os/os.h" +#include "os/shell.h" #include "os_unix.h" #include "regexp.h" #include "tag.h" @@ -1212,7 +1213,7 @@ expand_backtick ( buffer = eval_to_string(cmd + 1, &p, TRUE); else buffer = get_cmd_output(cmd, NULL, - (flags & EW_SILENT) ? SHELL_SILENT : 0); + (flags & EW_SILENT) ? kShellOptSilent : 0); vim_free(cmd); if (buffer == NULL) return 0; |