From 5e4eb18eb0242794c0b3a622f7acf0d3e6856c05 Mon Sep 17 00:00:00 2001 From: Michael Ennen Date: Fri, 11 Nov 2016 13:13:55 -0700 Subject: Add some tests and cleanup. --- src/nvim/eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/eval.c') diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 043e799b4e..a205c37d6e 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -9664,7 +9664,7 @@ static void f_function(typval_T *argvars, typval_T *rettv, FunPtr fptr) } if (arg_idx > 0) { if (argvars[arg_idx].v_type != VAR_LIST) { - EMSG(_("E923: Second argument of function() must be" + EMSG(_("E923: Second argument of function() must be " "a list or a dict")); xfree(name); return; -- cgit