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
|
let x = 1
|
||||||
enddef
|
enddef
|
||||||
|
|
||||||
def Test_expr4_vimscript()
|
def Test_expr4_vim9script()
|
||||||
# check line continuation
|
# check line continuation
|
||||||
let lines =<< trim END
|
let lines =<< trim END
|
||||||
vim9script
|
vim9script
|
||||||
@@ -819,6 +819,12 @@ def Test_expr4_vimscript()
|
|||||||
echo 2!= 3
|
echo 2!= 3
|
||||||
END
|
END
|
||||||
CheckScriptFailure(lines, 'E1004:')
|
CheckScriptFailure(lines, 'E1004:')
|
||||||
|
|
||||||
|
lines =<< trim END
|
||||||
|
vim9script
|
||||||
|
echo len('xxx') == 3
|
||||||
|
END
|
||||||
|
CheckScriptSuccess(lines)
|
||||||
enddef
|
enddef
|
||||||
|
|
||||||
func Test_expr4_fails()
|
func Test_expr4_fails()
|
||||||
|
@@ -686,7 +686,10 @@ get_func_tv(
|
|||||||
while (--argcount >= 0)
|
while (--argcount >= 0)
|
||||||
clear_tv(&argvars[argcount]);
|
clear_tv(&argvars[argcount]);
|
||||||
|
|
||||||
*arg = skipwhite(argp);
|
if (in_vim9script())
|
||||||
|
*arg = argp;
|
||||||
|
else
|
||||||
|
*arg = skipwhite(argp);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -4097,6 +4100,7 @@ ex_call(exarg_T *eap)
|
|||||||
if (!failed || eap->cstack->cs_trylevel > 0)
|
if (!failed || eap->cstack->cs_trylevel > 0)
|
||||||
{
|
{
|
||||||
// Check for trailing illegal characters and a following command.
|
// Check for trailing illegal characters and a following command.
|
||||||
|
arg = skipwhite(arg);
|
||||||
if (!ends_excmd2(eap->arg, arg))
|
if (!ends_excmd2(eap->arg, arg))
|
||||||
{
|
{
|
||||||
if (!failed)
|
if (!failed)
|
||||||
|
@@ -754,6 +754,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1418,
|
||||||
/**/
|
/**/
|
||||||
1417,
|
1417,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user