]> granicus.if.org Git - vim/commitdiff
patch 9.0.0437: no error when custom completion function returns wrong type v9.0.0437
authorBram Moolenaar <Bram@vim.org>
Sat, 10 Sep 2022 12:52:26 +0000 (13:52 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 10 Sep 2022 12:52:26 +0000 (13:52 +0100)
Problem:    No error when a custom completion function returns something else
            than the expected list.
Solution:   Give an error. (closes #11100)

src/errors.h
src/eval.c
src/testdir/test_usercommands.vim
src/version.c

index 43baa6a1adc72636eb5cde25b8950d6ec5e87d00..d1cf4b457f9fbded0dfd9191f3b7c339ad2ceed6 100644 (file)
@@ -3333,4 +3333,6 @@ EXTERN char e_string_number_list_or_blob_required_for_argument_nr[]
        INIT(= N_("E1301: String, Number, List or Blob required for argument %d"));
 EXTERN char e_script_variable_was_deleted[]
        INIT(= N_("E1302: Script variable was deleted"));
+EXTERN char e_custom_list_completion_function_does_not_return_list_but_str[]
+       INIT(= N_("E1303: Custom list completion function does not return a List but a %s"));
 #endif
index db8b4e6c982cb7d836908cd6acc683b4f93589dc..f208ab100961555e8f9426cc0a76092d9beb5b28 100644 (file)
@@ -842,6 +842,7 @@ call_func_retstr(
  * Call Vim script function "func" and return the result as a List.
  * Uses "argv" and "argc" as call_func_retstr().
  * Returns NULL when there is something wrong.
+ * Gives an error when the returned value is not a list.
  */
     void *
 call_func_retlist(
@@ -856,6 +857,8 @@ call_func_retlist(
 
     if (rettv.v_type != VAR_LIST)
     {
+       semsg(_(e_custom_list_completion_function_does_not_return_list_but_str),
+               vartype_name(rettv.v_type));
        clear_tv(&rettv);
        return NULL;
     }
index 91d8bfd0621650b9ff5e993dcb9982c0b642112a..8a41004060a758da58e8cd349ba8d5f422d5502a 100644 (file)
@@ -666,7 +666,7 @@ func Test_usercmd_custom()
     return "a\nb\n"
   endfunc
   command -nargs=* -complete=customlist,T1 TCmd1
-  call feedkeys(":TCmd1 \<C-A>\<C-B>\"\<CR>", 'xt')
+  call assert_fails('call feedkeys(":TCmd1 \<C-A>\<C-B>\"\<CR>", "xt")', 'E1303: Custom list completion function does not return a List but a string')
   call assert_equal('"TCmd1 ', @:)
   delcommand TCmd1
   delfunc T1
@@ -675,7 +675,7 @@ func Test_usercmd_custom()
     return {}
   endfunc
   command -nargs=* -complete=customlist,T2 TCmd2
-  call feedkeys(":TCmd2 \<C-A>\<C-B>\"\<CR>", 'xt')
+  call assert_fails('call feedkeys(":TCmd2 \<C-A>\<C-B>\"\<CR>", "xt")', 'E1303: Custom list completion function does not return a List but a dict')
   call assert_equal('"TCmd2 ', @:)
   delcommand TCmd2
   delfunc T2
index cd340b526891e195c4511aac8f28aac315e3d285..2d9b3ad208c1229f3bd19b8e15cdddb0111cfc4f 100644 (file)
@@ -703,6 +703,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    437,
 /**/
     436,
 /**/