diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2025-01-14 00:16:40 +0100 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2025-01-14 00:16:40 +0100 |
commit | 383de5c3f6f1ca7c8da7450d6e1716b43e9d2020 (patch) | |
tree | 0ec1c0c1bf4f29387d6361bdc6f0073378344d7d /src/data.c | |
parent | f0e63558bd3dfd9e57cacfba8690f9dd29774947 (diff) | |
download | emacs-383de5c3f6f1ca7c8da7450d6e1716b43e9d2020.tar.gz emacs-383de5c3f6f1ca7c8da7450d6e1716b43e9d2020.tar.bz2 emacs-383de5c3f6f1ca7c8da7450d6e1716b43e9d2020.zip |
Prefer calln to CALLN where applicable
* src/callint.c (read_file_name):
* src/comp.c (CALL0I, CALL1I, CALL2I, CALL4I, declare_imported_func):
* src/data.c (Ffset, notify_variable_watchers):
* src/eval.c (Ffuncall_with_delayed_message):
* src/keymap.c (Fdescribe_buffer_bindings):
* src/minibuf.c (Fread_buffer, Fcompleting_read):
* src/pdumper.c (Fdump_emacs_portable):
* src/print.c (print_vectorlike_unreadable):
* src/treesit.c (treesit_traverse_match_predicate)
(treesit_build_sparse_tree): Prefer calln to CALLN.
Diffstat (limited to 'src/data.c')
-rw-r--r-- | src/data.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c index bbe14c83dfb..be85f817014 100644 --- a/src/data.c +++ b/src/data.c @@ -911,7 +911,7 @@ signal a `cyclic-function-indirection' error. */) if (!NILP (Vnative_comp_enable_subr_trampolines) && SUBRP (function) && !NATIVE_COMP_FUNCTIONP (function)) - CALLN (Ffuncall, Qcomp_subr_trampoline_install, symbol); + calln (Qcomp_subr_trampoline_install, symbol); #endif set_symbol_function (symbol, definition); @@ -1910,7 +1910,7 @@ notify_variable_watchers (Lisp_Object symbol, funcall_subr (XSUBR (watcher), ARRAYELTS (args), args); } else - CALLN (Ffuncall, watcher, symbol, newval, operation, where); + calln (watcher, symbol, newval, operation, where); } unbind_to (count, Qnil); |