summaryrefslogtreecommitdiff
path: root/src/vim9compile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/vim9compile.c')
-rw-r--r--src/vim9compile.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vim9compile.c b/src/vim9compile.c
index 7e7ecb864..e39ddeeca 100644
--- a/src/vim9compile.c
+++ b/src/vim9compile.c
@@ -3275,8 +3275,9 @@ compile_expr7(char_u **arg, cctx_T *cctx)
char_u *start = skipwhite(*arg + 1);
// Find out what comes after the arguments.
+ // TODO: pass getline function
ret = get_function_args(&start, '-', NULL,
- NULL, NULL, NULL, TRUE);
+ NULL, NULL, NULL, TRUE, NULL, NULL);
if (ret != FAIL && *start == '>')
ret = compile_lambda(arg, cctx);
else