diff options
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index a5d79bcd4a..cd29e4ef19 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -19254,6 +19254,7 @@ static void set_var(const char *name, const size_t name_len, typval_T *const tv, return; } else if (v->di_tv.v_type != tv->v_type) { EMSG2(_("E963: setting %s to value with wrong type"), name); + return; } } |