aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/fileio.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/fileio.c
parentd666b0e48fd11d5a159e8e0055ce20d287b89644 (diff)
downloadrneovim-3c5864772f1c4d899fb5521868d373bcf0ebf788.tar.gz
rneovim-3c5864772f1c4d899fb5521868d373bcf0ebf788.tar.bz2
rneovim-3c5864772f1c4d899fb5521868d373bcf0ebf788.zip
Remove char_u: message:smsg()
Diffstat (limited to 'src/nvim/fileio.c')
-rw-r--r--src/nvim/fileio.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c
index f5cf226da4..4dfa155e61 100644
--- a/src/nvim/fileio.c
+++ b/src/nvim/fileio.c
@@ -5404,8 +5404,7 @@ void aubuflocal_remove(buf_T *buf)
au_remove_pat(ap);
if (p_verbose >= 6) {
verbose_enter();
- smsg((char_u *)
- _("auto-removing autocommand: %s <buffer=%d>"),
+ smsg(_("auto-removing autocommand: %s <buffer=%d>"),
event_nr2name(event), buf->b_fnum);
verbose_leave();
}
@@ -6835,7 +6834,7 @@ auto_next_pat (
(char *)name, (char *)ap->pat);
if (p_verbose >= 8) {
verbose_enter();
- smsg((char_u *)_("Executing %s"), sourcing_name);
+ smsg(_("Executing %s"), sourcing_name);
verbose_leave();
}
@@ -6897,7 +6896,7 @@ char_u *getnextac(int c, void *cookie, int indent)
if (p_verbose >= 9) {
verbose_enter_scroll();
- smsg((char_u *)_("autocommand %s"), ac->cmd);
+ smsg(_("autocommand %s"), ac->cmd);
msg_puts((char_u *)"\n"); /* don't overwrite this either */
verbose_leave_scroll();
}