mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 9.0.0377: argument assignment does not work
Problem: Argument assignment does not work. Solution: Skip over "=".
This commit is contained in:
@@ -311,7 +311,7 @@ get_function_args(
|
|||||||
|
|
||||||
// find the end of the expression (doesn't evaluate it)
|
// find the end of the expression (doesn't evaluate it)
|
||||||
any_default = TRUE;
|
any_default = TRUE;
|
||||||
p = skipwhite(p) + 1;
|
p = skipwhite(np + 1);
|
||||||
expr = p;
|
expr = p;
|
||||||
if (eval1(&p, &rettv, NULL) != FAIL)
|
if (eval1(&p, &rettv, NULL) != FAIL)
|
||||||
{
|
{
|
||||||
|
@@ -703,6 +703,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 */
|
||||||
|
/**/
|
||||||
|
377,
|
||||||
/**/
|
/**/
|
||||||
376,
|
376,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user