diff options
author | Michael Reed <m.reed@mykolab.com> | 2015-05-13 15:29:50 -0400 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2015-05-13 15:29:50 -0400 |
commit | 3c5864772f1c4d899fb5521868d373bcf0ebf788 (patch) | |
tree | a3b1ef76fce70cc91da8bb4270fc3b91c32609cf /src/nvim/eval.c | |
parent | d666b0e48fd11d5a159e8e0055ce20d287b89644 (diff) | |
download | rneovim-3c5864772f1c4d899fb5521868d373bcf0ebf788.tar.gz rneovim-3c5864772f1c4d899fb5521868d373bcf0ebf788.tar.bz2 rneovim-3c5864772f1c4d899fb5521868d373bcf0ebf788.zip |
Remove char_u: message:smsg()
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index d6b1960155..906659a1f3 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -19105,7 +19105,7 @@ call_user_func ( ++no_wait_return; verbose_enter_scroll(); - smsg((char_u *)_("calling %s"), sourcing_name); + smsg(_("calling %s"), sourcing_name); if (p_verbose >= 14) { char_u buf[MSG_BUF_LEN]; char_u numbuf2[NUMBUFLEN]; @@ -19203,9 +19203,9 @@ call_user_func ( verbose_enter_scroll(); if (aborting()) - smsg((char_u *)_("%s aborted"), sourcing_name); + smsg(_("%s aborted"), sourcing_name); else if (fc->rettv->v_type == VAR_NUMBER) - smsg((char_u *)_("%s returning #%" PRId64 ""), + smsg(_("%s returning #%" PRId64 ""), sourcing_name, (int64_t)fc->rettv->vval.v_number); else { char_u buf[MSG_BUF_LEN]; @@ -19224,7 +19224,7 @@ call_user_func ( trunc_string(s, buf, MSG_BUF_CLEN, MSG_BUF_LEN); s = buf; } - smsg((char_u *)_("%s returning %s"), sourcing_name, s); + smsg(_("%s returning %s"), sourcing_name, s); xfree(tofree); } } @@ -19245,7 +19245,7 @@ call_user_func ( ++no_wait_return; verbose_enter_scroll(); - smsg((char_u *)_("continuing in %s"), sourcing_name); + smsg(_("continuing in %s"), sourcing_name); msg_puts((char_u *)"\n"); /* don't overwrite this either */ verbose_leave_scroll(); |