Function: compat-call
compat-call is a macro defined in compat.el.gz.
Signature
(compat-call FUN &rest ARGS)
Documentation
Call compatibility function or macro FUN with ARGS.
This is a pseudo-compatibility stub for core packages on ELPA, that depend on the Compat package, whenever the user doesn't have the package installed on their current system.
Aliases
erc-compat-call (obsolete since 30.1)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/compat.el.gz
(defmacro compat-call (fun &rest args)
"Call compatibility function or macro FUN with ARGS.
This is a pseudo-compatibility stub for core packages on ELPA,
that depend on the Compat package, whenever the user doesn't have
the package installed on their current system."
(cons fun args))