mirror of
https://github.com/vim/vim.git
synced 2025-10-12 06:44:06 -04:00
updated for version 7.1-153
This commit is contained in:
@@ -5924,7 +5924,11 @@ emsg3(s, a1, 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