Problem: Missing change to compile_list().
Solution: Add error message.
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 471,
/**/
470,
/**/
while (*p != ']')
{
if (*p == NUL)
+ {
+ semsg(_(e_list_end), *arg);
return FAIL;
+ }
if (compile_expr1(&p, cctx) == FAIL)
break;
++count;
ufunc_T *ufunc;
// Get the funcref in "rettv".
- if (get_lambda_tv(arg, &rettv, TRUE) == FAIL)
+ if (get_lambda_tv(arg, &rettv, TRUE) != OK)
return FAIL;
ufunc = rettv.vval.v_partial->pt_func;