]> git.eshelyaron.com Git - emacs.git/commitdiff
Allow inhibiting warnings about obsolete macros again
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 30 Nov 2021 13:38:15 +0000 (14:38 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 30 Nov 2021 13:38:15 +0000 (14:38 +0100)
* lisp/emacs-lisp/macroexp.el (macroexp-macroexpand): Inhibit
warning if requested (bug#50984).

lisp/emacs-lisp/macroexp.el

index 1e4fdd126cb28990290bed4255a6cdcb093960b6..66c276e7b78b48c2dc4e4150c4ac9d90e8b9a4a2 100644 (file)
@@ -216,10 +216,11 @@ is executed without being compiled first."
         (let* ((fun (car form))
                (obsolete (get fun 'byte-obsolete-info)))
           (macroexp-warn-and-return
-           (macroexp--obsolete-warning
-            fun obsolete
-            (if (symbolp (symbol-function fun))
-                "alias" "macro"))
+           (and (byte-compile-warning-enabled-p 'obsolete fun)
+                (macroexp--obsolete-warning
+                 fun obsolete
+                 (if (symbolp (symbol-function fun))
+                     "alias" "macro")))
            new-form 'obsolete))
       new-form)))