diff options
| author | Michael Reed <m.reed@mykolab.com> | 2015-05-13 15:31:40 -0400 |
|---|---|---|
| committer | Michael Reed <m.reed@mykolab.com> | 2015-05-13 15:31:40 -0400 |
| commit | e888c479f3d34a1948c63495328b4184ff2ab874 (patch) | |
| tree | f7dfab3c160479dd7170fbdb47684c6fd9188f4e /src/nvim/fileio.c | |
| parent | af4b0a76a757f44ea7fbfc8e1c863952adc6ac1e (diff) | |
| parent | af3381b3196107653c04b56e7fae07e8a9a320ed (diff) | |
| download | rneovim-e888c479f3d34a1948c63495328b4184ff2ab874.tar.gz rneovim-e888c479f3d34a1948c63495328b4184ff2ab874.tar.bz2 rneovim-e888c479f3d34a1948c63495328b4184ff2ab874.zip | |
Merge pull request #2619 from Pyrohh/char_u-to-char
[RDY] Remove char_u (6)
Diffstat (limited to 'src/nvim/fileio.c')
| -rw-r--r-- | src/nvim/fileio.c | 7 |
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(); } |