diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-27 21:48:38 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-04-27 22:40:39 -0400 |
commit | e612a0a76a5c990220113e76ec6a07fe49c28618 (patch) | |
tree | 0831806a26fe7f5a14f3691745dde2c8cc397041 /src | |
parent | d894b3da1e4bc0fbb3baf319ca3071cc1d7b7f6c (diff) | |
download | rneovim-e612a0a76a5c990220113e76ec6a07fe49c28618.tar.gz rneovim-e612a0a76a5c990220113e76ec6a07fe49c28618.tar.bz2 rneovim-e612a0a76a5c990220113e76ec6a07fe49c28618.zip |
vim-patch:d1caa941d876
Update runtime files
https://github.com/vim/vim/commit/d1caa941d876181aae0ebebc6ea954045bf0da24
Cherry-pick error E452 from patch v8.2.0486.
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 2c21f82aeb..079c0dc3c0 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -1575,7 +1575,7 @@ static const char_u *skip_var_list(const char_u *arg, int *var_count, break; else if (*p == ';') { if (*semicolon == 1) { - EMSG(_("Double ; in list of variables")); + EMSG(_("E452: Double ; in list of variables")); return NULL; } *semicolon = 1; |