commit 22162e9dd6f4ce2fad52ba10f4312a343d9f368f
parent 62d36123e17912a6cb3b8bbeca01433c774e785e
Author: Andres Navarro <canavarro82@gmail.com>
Date: Tue, 8 Mar 2011 02:15:22 -0300
Changed make_applicative variadic macro to not depend on gcc ## hack.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/kground.c b/src/kground.c
@@ -68,8 +68,8 @@
}
/* TODO: add name and source info */
-#define kmake_applicative(K_, fn_, i_, ...) \
- kwrap(K_, kmake_operative(K_, KNIL, KNIL, fn_, i_, ##__VA_ARGS__))
+#define kmake_applicative(K_, fn_, ...) \
+ kwrap(K_, kmake_operative(K_, KNIL, KNIL, fn_, __VA_ARGS__))
/*