aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/message.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-08-26 15:20:59 +0200
committerGitHub <noreply@github.com>2018-08-26 15:20:59 +0200
commiteb663d53673c10fc5fe6af1cec354b1912780832 (patch)
tree3a0912ecbd1cf453c481c311541bdc262b248ff9 /src/nvim/message.c
parent8f058dca890ca9b9678e2435020f84a5f9c75acb (diff)
parent16b55d2e9d074bb3de7505708c30c05fe02d8f12 (diff)
downloadrneovim-eb663d53673c10fc5fe6af1cec354b1912780832.tar.gz
rneovim-eb663d53673c10fc5fe6af1cec354b1912780832.tar.bz2
rneovim-eb663d53673c10fc5fe6af1cec354b1912780832.zip
Merge #8903 from janlazo/vim-8.0.0883
Diffstat (limited to 'src/nvim/message.c')
-rw-r--r--src/nvim/message.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c
index 947cd0735e..4b0824c90f 100644
--- a/src/nvim/message.c
+++ b/src/nvim/message.c
@@ -610,7 +610,7 @@ static bool emsgfv(const char *fmt, va_list ap)
/// detected when fuzzing vim.
void iemsg(const char *s)
{
- msg((char_u *)s);
+ emsg((char_u *)s);
#ifdef ABORT_ON_INTERNAL_ERROR
abort();
#endif