summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-28 20:59:56 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-28 20:59:56 +0000
commitc97f9a55bd020b94d92c392516d763ed5e43d872 (patch)
tree463236716e49c8eb05bd8494034bc617924b2085
parent10c75c4a09a604ea674a2700aacb55914750b86d (diff)
patch 8.2.3930: getcmdline() argument has a misleading typev8.2.3930
Problem: getcmdline() argument has a misleading type. Solution: Use the correct type, even though the value is not used.
-rw-r--r--src/ex_docmd.c2
-rw-r--r--src/ex_getln.c8
-rw-r--r--src/normal.c2
-rw-r--r--src/proto/ex_getln.pro2
-rw-r--r--src/register.c2
-rw-r--r--src/userfunc.c2
-rw-r--r--src/version.c2
7 files changed, 11 insertions, 9 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 20b24572ce..d4c725c6fc 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -1467,7 +1467,7 @@ get_loop_line(int c, void *cookie, int indent, getline_opt_T options)
// First time inside the ":while"/":for": get line normally.
if (cp->getline == NULL)
- line = getcmdline(c, 0L, indent, options);
+ line = getcmdline(c, 0L, indent, 0);
else
line = cp->getline(c, cp->cookie, indent, options);
if (line != NULL && store_loop_line(cp->lines_gap, line) == OK)
diff --git a/src/ex_getln.c b/src/ex_getln.c
index bffdf657fa..b4316d8452 100644
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -1554,10 +1554,10 @@ init_ccline(int firstc, int indent)
*/
char_u *
getcmdline(
- int firstc,
- long count, // only used for incremental search
- int indent, // indent for inside conditionals
- int do_concat UNUSED)
+ int firstc,
+ long count, // only used for incremental search
+ int indent, // indent for inside conditionals
+ getline_opt_T do_concat UNUSED)
{
return getcmdline_int(firstc, count, indent, TRUE);
}
diff --git a/src/normal.c b/src/normal.c
index f925aa14ab..165b1856b6 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -4388,7 +4388,7 @@ nv_search(cmdarg_T *cap)
// When using 'incsearch' the cursor may be moved to set a different search
// start position.
- cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0, TRUE);
+ cap->searchbuf = getcmdline(cap->cmdchar, cap->count1, 0, 0);
if (cap->searchbuf == NULL)
{
diff --git a/src/proto/ex_getln.pro b/src/proto/ex_getln.pro
index d6f19110e7..d56893a657 100644
--- a/src/proto/ex_getln.pro
+++ b/src/proto/ex_getln.pro
@@ -1,6 +1,6 @@
/* ex_getln.c */
void cmdline_init(void);
-char_u *getcmdline(int firstc, long count, int indent, int do_concat);
+char_u *getcmdline(int firstc, long count, int indent, getline_opt_T do_concat);
char_u *getcmdline_prompt(int firstc, char_u *prompt, int attr, int xp_context, char_u *xp_arg);
int check_opt_wim(void);
int text_and_win_locked(void);
diff --git a/src/register.c b/src/register.c
index 6a4bc2cc1a..2a5f1196a9 100644
--- a/src/register.c
+++ b/src/register.c
@@ -97,7 +97,7 @@ get_expr_register(void)
{
char_u *new_line;
- new_line = getcmdline('=', 0L, 0, TRUE);
+ new_line = getcmdline('=', 0L, 0, 0);
if (new_line == NULL)
return NUL;
if (*new_line == NUL) // use previous line
diff --git a/src/userfunc.c b/src/userfunc.c
index f79e4cdf40..d4d28c5297 100644
--- a/src/userfunc.c
+++ b/src/userfunc.c
@@ -180,7 +180,7 @@ get_function_line(
char_u *theline;
if (eap->getline == NULL)
- theline = getcmdline(':', 0L, indent, getline_options);
+ theline = getcmdline(':', 0L, indent, 0);
else
theline = eap->getline(':', eap->cookie, indent, getline_options);
if (theline != NULL)
diff --git a/src/version.c b/src/version.c
index 505d3f1430..b752bc4c79 100644
--- a/src/version.c
+++ b/src/version.c
@@ -750,6 +750,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 3930,
+/**/
3929,
/**/
3928,