aboutsummaryrefslogtreecommitdiff
path: root/compat.el
diff options
context:
space:
mode:
authorDaniel Mendler <mail@daniel-mendler.de>2023-01-03 23:11:09 +0100
committerDaniel Mendler <mail@daniel-mendler.de>2023-01-03 23:11:25 +0100
commit4a799f58892214537787eb2fc2b75a1025a06ab2 (patch)
treea8448ee6502eef639a6a8e9623d822c16e5a7b41 /compat.el
parentcadcc744d0db95d86deb8c2c55b5a5e3a05cadd0 (diff)
Rename compat-funcall to compat-call
See the discussion with @tarsius in https://github.com/magit/magit/issues/4836
Diffstat (limited to 'compat.el')
-rw-r--r--compat.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat.el b/compat.el
index 28ddf61..dee0a4f 100644
--- a/compat.el
+++ b/compat.el
@@ -50,7 +50,7 @@ FUN, the symbol FUN is returned itself."
(let ((compat (intern (format "compat--%s" fun))))
`#',(if (fboundp compat) compat fun)))
-(defmacro compat-funcall (fun &rest args)
+(defmacro compat-call (fun &rest args)
"Call compatibility function FUN with ARGS.
See `compat-function' for the compatibility function resolution."