# HG changeset patch # User vimboss # Date 1150990514 0 # Node ID a5beb9fb4da85dfc21dbb68af0fd6aec616dd1dc # Parent 2e1e9b708941e1cfc2c0540196719f78e1ab18f5 updated for version 7.0-024 diff --git a/src/eval.c b/src/eval.c --- a/src/eval.c +++ b/src/eval.c @@ -17759,6 +17759,13 @@ set_var(name, tv, copy) } else /* add a new variable */ { + /* Can't add "v:" variable. */ + if (ht == &vimvarht) + { + EMSG2(_(e_illvar), name); + return; + } + /* Make sure the variable name is valid. */ for (p = varname; *p != NUL; ++p) if (!eval_isnamec1(*p) && (p == varname || !VIM_ISDIGIT(*p)) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 24, +/**/ 23, /**/ 22,