mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.1418: Vim9: invalid error for missing white space
Problem: Vim9: invalid error for missing white space after function. Solution: Do not skip over white space. (closes #6679)
This commit is contained in:
@@ -706,7 +706,7 @@ def RetVoid()
|
||||
let x = 1
|
||||
enddef
|
||||
|
||||
def Test_expr4_vimscript()
|
||||
def Test_expr4_vim9script()
|
||||
# check line continuation
|
||||
let lines =<< trim END
|
||||
vim9script
|
||||
@@ -819,6 +819,12 @@ def Test_expr4_vimscript()
|
||||
echo 2!= 3
|
||||
END
|
||||
CheckScriptFailure(lines, 'E1004:')
|
||||
|
||||
lines =<< trim END
|
||||
vim9script
|
||||
echo len('xxx') == 3
|
||||
END
|
||||
CheckScriptSuccess(lines)
|
||||
enddef
|
||||
|
||||
func Test_expr4_fails()
|
||||
|
@@ -686,6 +686,9 @@ get_func_tv(
|
||||
while (--argcount >= 0)
|
||||
clear_tv(&argvars[argcount]);
|
||||
|
||||
if (in_vim9script())
|
||||
*arg = argp;
|
||||
else
|
||||
*arg = skipwhite(argp);
|
||||
return ret;
|
||||
}
|
||||
@@ -4097,6 +4100,7 @@ ex_call(exarg_T *eap)
|
||||
if (!failed || eap->cstack->cs_trylevel > 0)
|
||||
{
|
||||
// Check for trailing illegal characters and a following command.
|
||||
arg = skipwhite(arg);
|
||||
if (!ends_excmd2(eap->arg, arg))
|
||||
{
|
||||
if (!failed)
|
||||
|
@@ -754,6 +754,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1418,
|
||||
/**/
|
||||
1417,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user