0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 9.0.0437: no error when custom completion function returns wrong type

Problem:    No error when a custom completion function returns something else
            than the expected list.
Solution:   Give an error. (closes #11100)
This commit is contained in:
Bram Moolenaar
2022-09-10 13:52:26 +01:00
parent 71b6d33976
commit 55e9366e32
4 changed files with 9 additions and 2 deletions

View 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;
}