diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2018-08-26 15:20:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-26 15:20:59 +0200 |
| commit | eb663d53673c10fc5fe6af1cec354b1912780832 (patch) | |
| tree | 3a0912ecbd1cf453c481c311541bdc262b248ff9 /src/nvim/message.c | |
| parent | 8f058dca890ca9b9678e2435020f84a5f9c75acb (diff) | |
| parent | 16b55d2e9d074bb3de7505708c30c05fe02d8f12 (diff) | |
| download | rneovim-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.c | 2 |
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 |