aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/quickfix.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/quickfix.c
parentd666b0e48fd11d5a159e8e0055ce20d287b89644 (diff)
downloadrneovim-3c5864772f1c4d899fb5521868d373bcf0ebf788.tar.gz
rneovim-3c5864772f1c4d899fb5521868d373bcf0ebf788.tar.bz2
rneovim-3c5864772f1c4d899fb5521868d373bcf0ebf788.zip
Remove char_u: message:smsg()
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r--src/nvim/quickfix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c
index 7e22da6e7a..4d53238381 100644
--- a/src/nvim/quickfix.c
+++ b/src/nvim/quickfix.c
@@ -1861,7 +1861,7 @@ void qf_age(exarg_T *eap)
static void qf_msg(qf_info_T *qi)
{
- smsg((char_u *)_("error list %d of %d; %d errors"),
+ smsg(_("error list %d of %d; %d errors"),
qi->qf_curlist + 1, qi->qf_listcount,
qi->qf_lists[qi->qf_curlist].qf_count);
qf_update_buffer(qi);
@@ -2888,7 +2888,7 @@ void ex_vimgrep(exarg_T *eap)
if (buf == NULL) {
if (!got_int)
- smsg((char_u *)_("Cannot open file \"%s\""), fname);
+ smsg(_("Cannot open file \"%s\""), fname);
} else {
/* Try for a match in all lines of the buffer.
* For ":1vimgrep" look for first match only. */