]> git.eshelyaron.com Git - emacs.git/commitdiff
Delete unused aliases for calln
authorStefan Kangas <stefankangas@gmail.com>
Sun, 19 Jan 2025 04:29:27 +0000 (05:29 +0100)
committerEshel Yaron <me@eshelyaron.com>
Mon, 20 Jan 2025 18:51:26 +0000 (19:51 +0100)
* src/lisp.h (call1, call2, call3, call4)
(call5, call6, call7, call8): Delete unused aliases for calln.

(cherry picked from commit 6a0db0d80d538978f4e681b5947d60b7fb93cf9e)

src/lisp.h

index 9038a37e4217bf7c6b086ef45b8fdb0db48789bf..c9f9f17e0dba6a66b7e9be7b08d2631a67044462 100644 (file)
@@ -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.  */