diff options
author | James McCoy <jamessan@jamessan.com> | 2018-01-01 23:11:31 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2018-01-02 19:35:22 -0500 |
commit | b86e44aa358c2164bebddbb4ed9640b000323c6b (patch) | |
tree | 61b36745bad7a4480c8682e0604fb0701a979502 /src/nvim/if_cscope.c | |
parent | 09b9f9b7ce4c86a931d29fa1ba8f023a8571cbc4 (diff) | |
download | rneovim-b86e44aa358c2164bebddbb4ed9640b000323c6b.tar.gz rneovim-b86e44aa358c2164bebddbb4ed9640b000323c6b.tar.bz2 rneovim-b86e44aa358c2164bebddbb4ed9640b000323c6b.zip |
vim-patch:8.0.0160: EMSG() is sometimes used where it should be IEMSG()
Problem: EMSG() is sometimes used for internal errors.
Solution: Change them to IEMSG(). (Dominique Pelle) And a few more.
https://github.com/vim/vim/commit/de33011ec623fd562419dede6bf465b5b9881a20
Diffstat (limited to 'src/nvim/if_cscope.c')
-rw-r--r-- | src/nvim/if_cscope.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/if_cscope.c b/src/nvim/if_cscope.c index 654b4630c5..303a9bd92b 100644 --- a/src/nvim/if_cscope.c +++ b/src/nvim/if_cscope.c @@ -1370,7 +1370,7 @@ static char *cs_manage_matches(char **matches, char **contexts, cs_print_tags_priv(mp, cp, cnt); break; default: /* should not reach here */ - (void)EMSG(_("E570: fatal error in cs_manage_matches")); + IEMSG(_("E570: fatal error in cs_manage_matches")); return NULL; } |