diff options
author | Jack Bracewell <FriedSock@users.noreply.github.com> | 2017-03-17 17:26:33 +0000 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-03-17 18:26:33 +0100 |
commit | 147e115dd9bb9d28504ba22f5e63c188957646a0 (patch) | |
tree | 8eb09a04b965fe1e916a4a314e61d8150d56d6ae /src/nvim/eval.c | |
parent | 62e14d65651e1815c108e806377ba25b377bf37c (diff) | |
download | rneovim-147e115dd9bb9d28504ba22f5e63c188957646a0.tar.gz rneovim-147e115dd9bb9d28504ba22f5e63c188957646a0.tar.bz2 rneovim-147e115dd9bb9d28504ba22f5e63c188957646a0.zip |
vim-patch:7.4.2249 (#6303)
Problem: Missing colon in error message.
Solution: Add the colon. (Dominique Pelle)
https://github.com/vim/vim/commit/ba2099034f92a2814494f37bddb0c57d034401b4
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 7ca3d89665..d4daffb469 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -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; } |