emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master fb69593: Revert "Compilation warning fix for byte-r


From: Glenn Morris
Subject: [Emacs-diffs] master fb69593: Revert "Compilation warning fix for byte-run.el"
Date: Wed, 12 Jun 2019 20:21:24 -0400 (EDT)

branch: master
commit fb69593f60350e9ac4fceeacd9b81e1ec474600e
Author: Glenn Morris <address@hidden>
Commit: Glenn Morris <address@hidden>

    Revert "Compilation warning fix for byte-run.el"
    
    * lisp/emacs-lisp/byte-run.el (macro-declaration-function):
    Revert change that causes a bootstrap failure.
    
    ; Ref eg https://hydra.nixos.org/build/94678649
---
 lisp/emacs-lisp/byte-run.el | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el
index 81f8f11..6a21a0c 100644
--- a/lisp/emacs-lisp/byte-run.el
+++ b/lisp/emacs-lisp/byte-run.el
@@ -45,13 +45,12 @@ 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.
 
-(with-suppressed-warnings ((obsolete macro-declaration-function))
-  (defvar macro-declaration-function #'macro-declaration-function
-    "Function to process declarations in a macro definition.
+(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."))
+The value the function returns is not used.")
 
 (defalias 'macro-declaration-function
   #'(lambda (macro decl)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]