aboutsummaryrefslogtreecommitdiff
path: root/src/misc2.c
diff options
context:
space:
mode:
authorJulian Orth <ju.orth@gmail.com>2014-03-15 01:54:29 +0100
committerThiago de Arruda <tpadilha84@gmail.com>2014-03-31 21:24:59 -0300
commit079c47ed7b203b724690b627b2ad5a18f55fa2cd (patch)
treec71b653071f53b7c4f59579f94ac6cc1571ff8f6 /src/misc2.c
parent30160c1561b0c925b036d9f8c8fa406dff68e7a7 (diff)
downloadrneovim-079c47ed7b203b724690b627b2ad5a18f55fa2cd.tar.gz
rneovim-079c47ed7b203b724690b627b2ad5a18f55fa2cd.tar.bz2
rneovim-079c47ed7b203b724690b627b2ad5a18f55fa2cd.zip
remove HAVE_STDARG_H
Diffstat (limited to 'src/misc2.c')
-rw-r--r--src/misc2.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/misc2.c b/src/misc2.c
index 30ebb88b66..646e6e7b48 100644
--- a/src/misc2.c
+++ b/src/misc2.c
@@ -1819,11 +1819,7 @@ int 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);
}