diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-01-08 20:50:52 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-01-08 20:50:52 +0100 |
commit | de33011ec623fd562419dede6bf465b5b9881a20 (patch) | |
tree | 0ae82bcbe54c907d4893f36c94ed43624aea351d /src/channel.c | |
parent | c695cec4698b41d7b9555efdd47dda9b1945d3ae (diff) | |
download | vim-git-de33011ec623fd562419dede6bf465b5b9881a20.tar.gz |
patch 8.0.0160: EMSG() is sometimes used where it should be IEMSG()v8.0.0160
Problem: EMSG() is sometimes used for internal errors.
Solution: Change them to IEMSG(). (Dominique Pelle) And a few more.
Diffstat (limited to 'src/channel.c')
-rw-r--r-- | src/channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/channel.c b/src/channel.c index 32f3527f7..f409e1d20 100644 --- a/src/channel.c +++ b/src/channel.c @@ -1567,7 +1567,7 @@ invoke_callback(channel_T *channel, char_u *callback, partial_T *partial, int dummy; if (safe_to_invoke_callback == 0) - EMSG("INTERNAL: Invoking callback when it is not safe"); + IEMSG("INTERNAL: Invoking callback when it is not safe"); argv[0].v_type = VAR_CHANNEL; argv[0].vval.v_channel = channel; |