0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.2.3702: first key in dict is seen as curly expression and fails

Problem:    First key in dict is seen as curly expression and fails.
Solution:   Ignore failure of curly expression. (closes #9247)
This commit is contained in:
Bram Moolenaar
2021-11-30 11:56:22 +00:00
parent c750d91a07
commit 98cb90ef86
4 changed files with 13 additions and 9 deletions

View File

@@ -1822,7 +1822,8 @@ eval_number(
: STR2NR_ALL, &n, NULL, 0, TRUE);
if (len == 0)
{
semsg(_(e_invalid_expression_str), *arg);
if (evaluate)
semsg(_(e_invalid_expression_str), *arg);
return FAIL;
}
*arg += len;