aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Kangas2025-01-19 05:29:27 +0100
committerStefan Kangas2025-01-19 14:29:41 +0100
commit6a0db0d80d538978f4e681b5947d60b7fb93cf9e (patch)
tree2603b3e004acb4a6e0cdbec017dbcbc124507a15 /src
parent251e3d2654ae8e5fdee4624d9af93fb9c0e1b698 (diff)
downloademacs-6a0db0d80d538978f4e681b5947d60b7fb93cf9e.tar.gz
emacs-6a0db0d80d538978f4e681b5947d60b7fb93cf9e.zip
Delete unused aliases for calln
* src/lisp.h (call1, call2, call3, call4) (call5, call6, call7, call8): Delete unused aliases for calln.
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. */