diff options
| author | Stefan Kangas | 2025-01-14 00:16:40 +0100 |
|---|---|---|
| committer | Stefan Kangas | 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.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. */) | |||
| 911 | if (!NILP (Vnative_comp_enable_subr_trampolines) | 911 | if (!NILP (Vnative_comp_enable_subr_trampolines) |
| 912 | && SUBRP (function) | 912 | && SUBRP (function) |
| 913 | && !NATIVE_COMP_FUNCTIONP (function)) | 913 | && !NATIVE_COMP_FUNCTIONP (function)) |
| 914 | CALLN (Ffuncall, Qcomp_subr_trampoline_install, symbol); | 914 | calln (Qcomp_subr_trampoline_install, symbol); |
| 915 | #endif | 915 | #endif |
| 916 | 916 | ||
| 917 | set_symbol_function (symbol, definition); | 917 | set_symbol_function (symbol, definition); |
| @@ -1910,7 +1910,7 @@ notify_variable_watchers (Lisp_Object symbol, | |||
| 1910 | funcall_subr (XSUBR (watcher), ARRAYELTS (args), args); | 1910 | funcall_subr (XSUBR (watcher), ARRAYELTS (args), args); |
| 1911 | } | 1911 | } |
| 1912 | else | 1912 | else |
| 1913 | CALLN (Ffuncall, watcher, symbol, newval, operation, where); | 1913 | calln (watcher, symbol, newval, operation, where); |
| 1914 | } | 1914 | } |
| 1915 | 1915 | ||
| 1916 | unbind_to (count, Qnil); | 1916 | unbind_to (count, Qnil); |