forked from aniani/vim
patch 8.2.1889: Vim9: errornous error for missing white space after {}
Problem: Vim9: errornous error for missing white space after {}. Solution: Don't skip over white space after {}. (issue #7167)
This commit is contained in:
@@ -950,7 +950,7 @@ failret:
|
||||
return FAIL;
|
||||
}
|
||||
|
||||
*arg = skipwhite(*arg + 1);
|
||||
*arg = *arg + 1;
|
||||
if (evaluate)
|
||||
rettv_dict_set(rettv, d);
|
||||
|
||||
|
Reference in New Issue
Block a user