mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.3200: Vim9: hard to guess where a type error is given
Problem: Vim9: hard to guess where a type error is given. Solution: Add the function name where possible. (closes #8608)
This commit is contained in:
@@ -2043,7 +2043,7 @@ DictionaryUpdate(DictionaryObject *self, PyObject *args, PyObject *kwargs)
|
||||
return NULL;
|
||||
|
||||
VimTryStart();
|
||||
dict_extend(self->dict, tv.vval.v_dict, (char_u *) "force");
|
||||
dict_extend(self->dict, tv.vval.v_dict, (char_u *) "force", NULL);
|
||||
clear_tv(&tv);
|
||||
if (VimTryEnd())
|
||||
return NULL;
|
||||
|
Reference in New Issue
Block a user