From 3c5864772f1c4d899fb5521868d373bcf0ebf788 Mon Sep 17 00:00:00 2001 From: Michael Reed Date: Wed, 13 May 2015 15:29:50 -0400 Subject: Remove char_u: message:smsg() --- src/nvim/quickfix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/quickfix.c') 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. */ -- cgit