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/eval.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/eval.c')
| -rw-r--r-- | src/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index a73700419dd..b0cc2505a35 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -1169,7 +1169,7 @@ is not displayed. */) | |||
| 1169 | xstrdup (SSDATA (message))); | 1169 | xstrdup (SSDATA (message))); |
| 1170 | record_unwind_protect_ptr (with_delayed_message_cancel, timer); | 1170 | record_unwind_protect_ptr (with_delayed_message_cancel, timer); |
| 1171 | 1171 | ||
| 1172 | Lisp_Object result = CALLN (Ffuncall, function); | 1172 | Lisp_Object result = calln (function); |
| 1173 | 1173 | ||
| 1174 | return unbind_to (count, result); | 1174 | return unbind_to (count, result); |
| 1175 | } | 1175 | } |