From: Stefan Kangas Date: Sun, 19 Jan 2025 04:29:27 +0000 (+0100) Subject: Delete unused aliases for calln X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=16415a6e0e165cfdd79665c7c3eb57e14e61cd2d;p=emacs.git Delete unused aliases for calln * src/lisp.h (call1, call2, call3, call4) (call5, call6, call7, call8): Delete unused aliases for calln. (cherry picked from commit 6a0db0d80d538978f4e681b5947d60b7fb93cf9e) --- 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 'Finsert (1, &text);'. */ #define CALLN(f, ...) CALLMANY (f, ((Lisp_Object []) {__VA_ARGS__})) #define calln(...) CALLN (Ffuncall, __VA_ARGS__) -/* Compatibility aliases. */ -#define call1 calln -#define call2 calln -#define call3 calln -#define call4 calln -#define call5 calln -#define call6 calln -#define call7 calln -#define call8 calln /* Define 'call0' as a function rather than a CPP macro because we sometimes want to pass it as a first class function. */