Skip to content

Commit ba20990

Browse files
committed
patch 7.4.2249
Problem: Missing colon in error message. Solution: Add the colon. (Dominique Pelle)
1 parent 358308d commit ba20990

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/userfunc.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1955,7 +1955,7 @@ ex_function(exarg_T *eap)
19551955
p += 7;
19561956
if (current_funccal == NULL)
19571957
{
1958-
emsg_funcname(N_("E932 Closure function should not be at top level: %s"),
1958+
emsg_funcname(N_("E932: Closure function should not be at top level: %s"),
19591959
name == NULL ? (char_u *)"" : name);
19601960
goto erret;
19611961
}
@@ -2738,7 +2738,7 @@ ex_delfunction(exarg_T *eap)
27382738
/* A normal function (not a numbered function or lambda) has a
27392739
* refcount of 1 for the entry in the hashtable. When deleting
27402740
* it and the refcount is more than one, it should be kept.
2741-
* A numbered function and lambda snould be kept if the refcount is
2741+
* A numbered function and lambda should be kept if the refcount is
27422742
* one or more. */
27432743
if (fp->uf_refcount > (func_name_refcount(fp->uf_name) ? 0 : 1))
27442744
{
@@ -3479,7 +3479,7 @@ free_unref_funccal(int copyID, int testing)
34793479
}
34803480

34813481
/*
3482-
* Get function call environment based on bactrace debug level
3482+
* Get function call environment based on backtrace debug level
34833483
*/
34843484
static funccall_T *
34853485
get_funccal(void)

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -763,6 +763,8 @@ static char *(features[]) =
763763

764764
static int included_patches[] =
765765
{ /* Add new patch number below this line */
766+
/**/
767+
2249,
766768
/**/
767769
2248,
768770
/**/

0 commit comments

Comments
 (0)