Mercurial > vim
changeset 898:a5beb9fb4da8 v7.0.024
updated for version 7.0-024
author | vimboss |
---|---|
date | Thu, 22 Jun 2006 15:35:14 +0000 |
parents | 2e1e9b708941 |
children | 2981ad79c362 |
files | src/eval.c src/version.c |
diffstat | 2 files changed, 9 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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))