summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds2.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-04-05 19:44:40 +0200
committerBram Moolenaar <Bram@vim.org>2014-04-05 19:44:40 +0200
commit39c29ed5118ab513554d1d51d6a98e65f32784ba (patch)
tree01f3df4888dd4be45f2098fe71b574436d1e3a72 /src/ex_cmds2.c
parent57ebe6e2f94edad6adc43246d98919e728095211 (diff)
updated for version 7.4.248v7.4.248
Problem: Cannot distinguish between NL and NUL in output of system(). Solution: Add systemlist(). (ZyX)
Diffstat (limited to 'src/ex_cmds2.c')
-rw-r--r--src/ex_cmds2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c
index e66d4c571f..c502ff8527 100644
--- a/src/ex_cmds2.c
+++ b/src/ex_cmds2.c
@@ -4341,7 +4341,7 @@ find_locales()
/* 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, SHELL_SILENT);
+ NULL, SHELL_SILENT, NULL);
if (locale_a == NULL)
return NULL;
ga_init2(&locales_ga, sizeof(char_u *), 20);