aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/misc2.c
diff options
context:
space:
mode:
authorMichael Reed <m.reed@mykolab.com>2015-05-13 15:29:50 -0400
committerMichael Reed <m.reed@mykolab.com>2015-05-13 15:29:50 -0400
commit3c5864772f1c4d899fb5521868d373bcf0ebf788 (patch)
treea3b1ef76fce70cc91da8bb4270fc3b91c32609cf /src/nvim/misc2.c
parentd666b0e48fd11d5a159e8e0055ce20d287b89644 (diff)
downloadrneovim-3c5864772f1c4d899fb5521868d373bcf0ebf788.tar.gz
rneovim-3c5864772f1c4d899fb5521868d373bcf0ebf788.tar.bz2
rneovim-3c5864772f1c4d899fb5521868d373bcf0ebf788.zip
Remove char_u: message:smsg()
Diffstat (limited to 'src/nvim/misc2.c')
-rw-r--r--src/nvim/misc2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/misc2.c b/src/nvim/misc2.c
index 87a9556202..d9bc35470f 100644
--- a/src/nvim/misc2.c
+++ b/src/nvim/misc2.c
@@ -296,8 +296,8 @@ int call_shell(char_u *cmd, ShellOpts opts, char_u *extra_shell_arg)
if (p_verbose > 3) {
verbose_enter();
- smsg((char_u *)_("Calling shell to execute: \"%s\""),
- cmd == NULL ? p_sh : cmd);
+ smsg(_("Calling shell to execute: \"%s\""),
+ cmd == NULL ? p_sh : cmd);
ui_putc('\n');
verbose_leave();
}