diff options
| author | Stefan Kangas | 2020-02-05 13:28:31 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2020-02-05 13:28:31 +0100 |
| commit | feb681dc36cf8d086d326197a6db912f98b97773 (patch) | |
| tree | db36a42bd873716dc85b740c14f10bb0796f391f | |
| parent | bb9723b0e2c8d555fede7153ed684ae63d3d94c2 (diff) | |
| download | emacs-feb681dc36cf8d086d326197a6db912f98b97773.tar.gz emacs-feb681dc36cf8d086d326197a6db912f98b97773.zip | |
Silence byte-compiler warning
* lisp/emacs-lisp/bytecomp.el (byte-compile-insert-header): Silence
byte-compiler warning about "Unused lexical variable".
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index d35ce663507..fce5e4aed6d 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." | |||
| 2187 | (defun byte-compile-insert-header (_filename outbuffer) | 2187 | (defun byte-compile-insert-header (_filename outbuffer) |
| 2188 | "Insert a header at the start of OUTBUFFER. | 2188 | "Insert a header at the start of OUTBUFFER. |
| 2189 | Call from the source buffer." | 2189 | Call from the source buffer." |
| 2190 | (let ((dynamic-docstrings byte-compile-dynamic-docstrings) | 2190 | (let ((dynamic byte-compile-dynamic) |
| 2191 | (dynamic byte-compile-dynamic) | ||
| 2192 | (optimize byte-optimize)) | 2191 | (optimize byte-optimize)) |
| 2193 | (with-current-buffer outbuffer | 2192 | (with-current-buffer outbuffer |
| 2194 | (goto-char (point-min)) | 2193 | (goto-char (point-min)) |