aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 9038a37e421..c9f9f17e0db 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -3513,15 +3513,6 @@ enum maxargs
3513 'Finsert (1, &text);'. */ 3513 'Finsert (1, &text);'. */
3514#define CALLN(f, ...) CALLMANY (f, ((Lisp_Object []) {__VA_ARGS__})) 3514#define CALLN(f, ...) CALLMANY (f, ((Lisp_Object []) {__VA_ARGS__}))
3515#define calln(...) CALLN (Ffuncall, __VA_ARGS__) 3515#define calln(...) CALLN (Ffuncall, __VA_ARGS__)
3516/* Compatibility aliases. */
3517#define call1 calln
3518#define call2 calln
3519#define call3 calln
3520#define call4 calln
3521#define call5 calln
3522#define call6 calln
3523#define call7 calln
3524#define call8 calln
3525 3516
3526/* Define 'call0' as a function rather than a CPP macro because we 3517/* Define 'call0' as a function rather than a CPP macro because we
3527 sometimes want to pass it as a first class function. */ 3518 sometimes want to pass it as a first class function. */