diff --git a/src/typval.c b/src/typval.c index cf1208d58670c..f4af61a1731a8 100644 --- a/src/typval.c +++ b/src/typval.c @@ -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; diff --git a/src/version.c b/src/version.c index 2e0d3132bfbd1..d266a1ad2eab9 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 */ +/**/ + 2752, /**/ 2751, /**/