diff src/userfunc.c @ 21737:a849c984b485 v8.2.1418

patch 8.2.1418: Vim9: invalid error for missing white space Commit: https://github.com/vim/vim/commit/8294d49937b99067522fda8a9399bb9533e3c44e Author: Bram Moolenaar <Bram@vim.org> Date: Mon Aug 10 22:40:56 2020 +0200 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 https://github.com/vim/vim/issues/6679)
author Bram Moolenaar <Bram@vim.org>
date Mon, 10 Aug 2020 22:45:04 +0200
parents 1b96535705a0
children 7e1316c6d0eb
line wrap: on
line diff
--- a/src/userfunc.c
+++ b/src/userfunc.c
@@ -686,7 +686,10 @@ get_func_tv(
     while (--argcount >= 0)
 	clear_tv(&argvars[argcount]);
 
-    *arg = skipwhite(argp);
+    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)