summaryrefslogtreecommitdiffstats
path: root/src/ex_getln.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ex_getln.c')
-rw-r--r--src/ex_getln.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c
index 702b63db5b..60a8a0c712 100644
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -2705,12 +2705,12 @@ getexline(
int c, // normally ':', NUL for ":append"
void *cookie UNUSED,
int indent, // indent for inside conditionals
- int do_concat)
+ getline_opt_T options)
{
// When executing a register, remove ':' that's in front of each line.
if (exec_from_reg && vpeekc() == ':')
(void)vgetc();
- return getcmdline(c, 1L, indent, do_concat);
+ return getcmdline(c, 1L, indent, options);
}
/*
@@ -2725,7 +2725,7 @@ getexmodeline(
// :s prompt
void *cookie UNUSED,
int indent, // indent for inside conditionals
- int do_concat UNUSED)
+ getline_opt_T options UNUSED)
{
garray_T line_ga;
char_u *pend;