diff src/vim9execute.c @ 20915:a3853794a768 v8.2.1009

patch 8.2.1009: Vim9: some failures not checked for Commit: https://github.com/vim/vim/commit/c5b1c20b6b1968873ea31edac1db659773b3b93d Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 18 22:43:27 2020 +0200 patch 8.2.1009: Vim9: some failures not checked for Problem: Vim9: some failures not checked for. Solution: Add test cases. Remove unused code.
author Bram Moolenaar <Bram@vim.org>
date Thu, 18 Jun 2020 22:45:03 +0200
parents 65d9189d4dca
children 96bf2b304932
line wrap: on
line diff
--- a/src/vim9execute.c
+++ b/src/vim9execute.c
@@ -2119,12 +2119,8 @@ call_def_function(
 		    list_T	*list;
 		    int		count = iptr->isn_arg.number;
 
+		    // type will have been checked to be a list
 		    tv = STACK_TV_BOT(-1);
-		    if (tv->v_type != VAR_LIST)
-		    {
-			emsg(_(e_listreq));
-			goto failed;
-		    }
 		    list = tv->vval.v_list;
 
 		    // no error for short list, expect it to be checked earlier