aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_cmds2.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2014-09-30 23:03:48 -0400
committerJustin M. Keyes <justinkz@gmail.com>2014-09-30 23:03:48 -0400
commit8a14268ab97e0245a014282c8bb1ccfdf17d014e (patch)
treefc40abc08e13259a729b220518fe51958e2fd5dd /src/nvim/ex_cmds2.c
parentafe7ba1e71f0fe43817ae9abac56c721c99f95c6 (diff)
parent01fc01e5d6d170715c5f00dab767f857ecec7c21 (diff)
downloadrneovim-8a14268ab97e0245a014282c8bb1ccfdf17d014e.tar.gz
rneovim-8a14268ab97e0245a014282c8bb1ccfdf17d014e.tar.bz2
rneovim-8a14268ab97e0245a014282c8bb1ccfdf17d014e.zip
Merge pull request #1141 from splinterofchaos/system-nl
vim-patch:7.4.247 + vim-patch:7.4.248 + vim-patch:7.4.256 + f_system() bug fix
Diffstat (limited to 'src/nvim/ex_cmds2.c')
-rw-r--r--src/nvim/ex_cmds2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c
index 0703c76b8a..056a101d47 100644
--- a/src/nvim/ex_cmds2.c
+++ b/src/nvim/ex_cmds2.c
@@ -3181,8 +3181,8 @@ static char_u **find_locales(void)
/* Find all available locales by running command "locale -a". If this
* doesn't work we won't have completion. */
- char_u *locale_a = get_cmd_output((char_u *)"locale -a",
- NULL, kShellOptSilent);
+ char_u *locale_a = get_cmd_output((char_u *)"locale -a", NULL,
+ kShellOptSilent, NULL);
if (locale_a == NULL)
return NULL;
ga_init(&locales_ga, sizeof(char_u *), 20);