mirror of
https://github.com/vim/vim.git
synced 2025-10-01 04:54:07 -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:
@@ -1832,11 +1832,11 @@ tclmsg(char *text)
|
||||
while ((next=strchr(text, '\n')))
|
||||
{
|
||||
*next++ = '\0';
|
||||
MSG(text);
|
||||
msg(text);
|
||||
text = next;
|
||||
}
|
||||
if (*text)
|
||||
MSG(text);
|
||||
msg(text);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Reference in New Issue
Block a user