mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 7.4.1216
Problem: Still using HAVE_STDARG_H. Solution: Assume it's always defined.
This commit is contained in:
@@ -6023,11 +6023,7 @@ emsg3(char_u *s, char_u *a1, char_u *a2)
|
||||
{
|
||||
if (emsg_not_now())
|
||||
return TRUE; /* no error messages at the moment */
|
||||
#ifdef HAVE_STDARG_H
|
||||
vim_snprintf((char *)IObuff, IOSIZE, (char *)s, a1, a2);
|
||||
#else
|
||||
vim_snprintf((char *)IObuff, IOSIZE, (char *)s, (long_u)a1, (long_u)a2);
|
||||
#endif
|
||||
return emsg(IObuff);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user