Skip to content

Commit

Permalink
patch 8.2.2752
Browse files Browse the repository at this point in the history
  • Loading branch information
brammool committed Apr 10, 2021
1 parent fed9e83 commit e8e3078
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 1 addition & 4 deletions src/typval.c
Expand Up @@ -367,10 +367,7 @@ check_for_nonempty_string_arg(typval_T *args, int idx)
return FAIL;
if (args[idx].vval.v_string == NULL || *args[idx].vval.v_string == NUL)
{
if (idx >= 0)
semsg(_(e_non_empty_string_required_for_argument_nr), idx + 1);
else
emsg(_(e_non_empty_string_required));
semsg(_(e_non_empty_string_required_for_argument_nr), idx + 1);
return FAIL;
}
return OK;
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -750,6 +750,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
2752,
/**/
2751,
/**/
Expand Down

0 comments on commit e8e3078

Please sign in to comment.