aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/misc1.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-09-21 09:20:04 +0200
committerGitHub <noreply@github.com>2018-09-21 09:20:04 +0200
commitecdd2df88ab52ed6e39057e2a8fb9eabfbb90bd5 (patch)
treea6072625d7c97b943c4ed5cbfe3d258bd111c23f /src/nvim/misc1.c
parentad6bbe44683cf936ec2268ee89e8e1c22f538ecc (diff)
downloadrneovim-ecdd2df88ab52ed6e39057e2a8fb9eabfbb90bd5.tar.gz
rneovim-ecdd2df88ab52ed6e39057e2a8fb9eabfbb90bd5.tar.bz2
rneovim-ecdd2df88ab52ed6e39057e2a8fb9eabfbb90bd5.zip
shell/logging: Fix E730 with verbose system({List}) #9009
ref https://github.com/neovim/neovim/issues/9001#issuecomment-421843790 Steps to reproduce: :set verbose=9 :call system(['echo']) E730: using List as a String
Diffstat (limited to 'src/nvim/misc1.c')
-rw-r--r--src/nvim/misc1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/misc1.c b/src/nvim/misc1.c
index 7a32b3c00a..2e7fe4d7a9 100644
--- a/src/nvim/misc1.c
+++ b/src/nvim/misc1.c
@@ -2718,7 +2718,7 @@ int call_shell(char_u *cmd, ShellOpts opts, char_u *extra_shell_arg)
if (p_verbose > 3) {
verbose_enter();
- smsg(_("Calling shell to execute: \"%s\""), cmd == NULL ? p_sh : cmd);
+ smsg(_("Executing command: \"%s\""), cmd == NULL ? p_sh : cmd);
msg_putchar('\n');
verbose_leave();
}