summaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-01-08 20:50:52 +0100
committerBram Moolenaar <Bram@vim.org>2017-01-08 20:50:52 +0100
commitde33011ec623fd562419dede6bf465b5b9881a20 (patch)
tree0ae82bcbe54c907d4893f36c94ed43624aea351d /src/eval.c
parentc695cec4698b41d7b9555efdd47dda9b1945d3ae (diff)
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/eval.c')
-rw-r--r--src/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c
index 70fbc8863b..11fc035fb4 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -270,7 +270,7 @@ eval_init(void)
p = &vimvars[i];
if (STRLEN(p->vv_name) > 16)
{
- EMSG("INTERNAL: name too long, increase size of dictitem16_T");
+ IEMSG("INTERNAL: name too long, increase size of dictitem16_T");
getout(1);
}
STRCPY(p->vv_di.di_key, p->vv_name);