]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid compilation warning in byte-run
authorLars Ingebrigtsen <larsi@gnus.org>
Fri, 14 Jun 2019 11:23:11 +0000 (13:23 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 14 Jun 2019 11:24:47 +0000 (13:24 +0200)
* lisp/emacs-lisp/byte-run.el (macro-declaration-function): Avoid
compilation warning by not using `symbol-function'.

lisp/emacs-lisp/byte-run.el

index 6a21a0c909d63b180a92b7cf29656d5c921e6cf9..3a2043bad75c25ec50cbd065f5231c84f32e0e87 100644 (file)
@@ -45,7 +45,10 @@ So far, FUNCTION can only be a symbol, not a lambda expression."
 ;; `macro-declaration-function' are both obsolete (as marked at the end of this
 ;; file) but used in many .elc files.
 
-(defvar macro-declaration-function #'macro-declaration-function
+;; We don't use #' here, because it's an obsolete function, and we
+;; can't use `with-suppressed-errors' 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.