emacs-diffs
[Top][All Lists]
Advanced

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

master feb681d 3/3: Silence byte-compiler warning


From: Stefan Kangas
Subject: master feb681d 3/3: Silence byte-compiler warning
Date: Wed, 5 Feb 2020 07:35:40 -0500 (EST)

branch: master
commit feb681dc36cf8d086d326197a6db912f98b97773
Author: Stefan Kangas <address@hidden>
Commit: Stefan Kangas <address@hidden>

    Silence byte-compiler warning
    
    * lisp/emacs-lisp/bytecomp.el (byte-compile-insert-header): Silence
    byte-compiler warning about "Unused lexical variable".
---
 lisp/emacs-lisp/bytecomp.el | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index d35ce66..fce5e4a 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -2187,8 +2187,7 @@ With argument ARG, insert value in current buffer after 
the form."
 (defun byte-compile-insert-header (_filename outbuffer)
   "Insert a header at the start of OUTBUFFER.
 Call from the source buffer."
-  (let ((dynamic-docstrings byte-compile-dynamic-docstrings)
-       (dynamic byte-compile-dynamic)
+  (let ((dynamic byte-compile-dynamic)
        (optimize byte-optimize))
     (with-current-buffer outbuffer
       (goto-char (point-min))



reply via email to

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