Skip to content

Commit

Permalink
patch 8.2.3968: build failure
Browse files Browse the repository at this point in the history
Problem:    Build failure.
Solution:   Add missing changes.
  • Loading branch information
brammool committed Jan 1, 2022
1 parent 460ae5d commit e70cec9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/strings.c
Expand Up @@ -916,7 +916,7 @@ string_filter_map(
{
clear_tv(&newtv);
clear_tv(&tv);
emsg(_(e_stringreq));
emsg(_(e_string_required));
break;
}
else
Expand Down Expand Up @@ -956,7 +956,7 @@ string_reduce(
{
if (*p == NUL)
{
semsg(_(e_reduceempty), "String");
semsg(_(e_reduce_of_an_empty_str_with_no_initial_value), "String");
return;
}
if (copy_first_char_to_tv(p, rettv) == FAIL)
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -749,6 +749,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
3968,
/**/
3967,
/**/
Expand Down
2 changes: 1 addition & 1 deletion src/vim9compile.c
Expand Up @@ -1109,7 +1109,7 @@ get_var_dest(
*dest = dest_option;
if (cmdidx == CMD_final || cmdidx == CMD_const)
{
emsg(_(e_const_option));
emsg(_(e_cannot_lock_an_option));
return FAIL;
}
p = name;
Expand Down

0 comments on commit e70cec9

Please sign in to comment.