mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 8.1.0779: argument for message functions is inconsistent
Problem: Argument for message functions is inconsistent. Solution: Make first argument to msg() "char *".
This commit is contained in:
@@ -409,12 +409,6 @@ writer(writefn fn, char_u *str, PyInt n)
|
||||
}
|
||||
}
|
||||
|
||||
static int
|
||||
msg_wrapper(char *text)
|
||||
{
|
||||
return msg((char_u *)text);
|
||||
}
|
||||
|
||||
static int
|
||||
write_output(OutputObject *self, PyObject *string)
|
||||
{
|
||||
@@ -427,7 +421,7 @@ write_output(OutputObject *self, PyObject *string)
|
||||
|
||||
Py_BEGIN_ALLOW_THREADS
|
||||
Python_Lock_Vim();
|
||||
writer((writefn)(error ? emsg : msg_wrapper), (char_u *)str, len);
|
||||
writer((writefn)(error ? emsg : msg), (char_u *)str, len);
|
||||
Python_Release_Vim();
|
||||
Py_END_ALLOW_THREADS
|
||||
PyMem_Free(str);
|
||||
|
Reference in New Issue
Block a user