vim-patch:7.4.2249 (#6303)

Problem:    Missing colon in error message.
Solution:   Add the colon. (Dominique Pelle)

ba2099034f
This commit is contained in:
Jack Bracewell
2017-03-17 17:26:33 +00:00
committed by Justin M. Keyes
parent 62e14d6565
commit 147e115dd9
2 changed files with 2 additions and 2 deletions

View File

@@ -21381,7 +21381,7 @@ void ex_function(exarg_T *eap)
p += 7;
if (current_funccal == NULL) {
emsg_funcname(N_
("E932 Closure function should not be at top level: %s"),
("E932: Closure function should not be at top level: %s"),
name == NULL ? (char_u *)"" : name);
goto erret;
}