Variable: macro-declaration-function

macro-declaration-function is a variable defined in byte-run.el.gz.

This variable is obsolete since 24.3; use macro-declarations-alist instead.

Value

macro-declaration-function

Documentation

Function to process declarations in a macro definition.

The function will be called with two args MACRO and DECL. MACRO is the name of the macro being defined. DECL is a list (declare ...) containing the declarations. The value the function returns is not used.

Probably introduced at or before Emacs version 24.3.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/byte-run.el.gz
;; `macro-declaration-function' are both obsolete (as marked at the end of this
;; file) but used in many .elc files.

;; We don't use #' here, because it's an obsolete function, and we
;; can't use `with-suppressed-warnings' here due to how this file is
;; used in the bootstrapping process.
(defvar macro-declaration-function 'macro-declaration-function
  "Function to process declarations in a macro definition.
The function will be called with two args MACRO and DECL.
MACRO is the name of the macro being defined.
DECL is a list `(declare ...)' containing the declarations.
The value the function returns is not used.")