0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

patch 7.4.2076

Problem:    Syntax error when dict has '>' key.
Solution:   Check for endchar. (Ken Takata)
This commit is contained in:
Bram Moolenaar
2016-07-19 22:43:11 +02:00
parent c917da4b3e
commit 4f0383bc3f
3 changed files with 13 additions and 2 deletions

View File

@@ -150,7 +150,9 @@ func_init()
hash_init(&func_hashtab);
}
/* Get function arguments. */
/*
* Get function arguments.
*/
static int
get_function_args(
char_u **argp,
@@ -232,7 +234,9 @@ get_function_args(
break;
}
}
++p; /* skip the ')' */
if (*p != endchar)
goto err_ret;
++p; /* skip "endchar" */
*argp = p;
return OK;