Skip to content

Commit feb681d

Browse files
committed
Silence byte-compiler warning
* lisp/emacs-lisp/bytecomp.el (byte-compile-insert-header): Silence byte-compiler warning about "Unused lexical variable".
1 parent bb9723b commit feb681d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lisp/emacs-lisp/bytecomp.el

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2187,8 +2187,7 @@ With argument ARG, insert value in current buffer after the form."
21872187
(defun byte-compile-insert-header (_filename outbuffer)
21882188
"Insert a header at the start of OUTBUFFER.
21892189
Call from the source buffer."
2190-
(let ((dynamic-docstrings byte-compile-dynamic-docstrings)
2191-
(dynamic byte-compile-dynamic)
2190+
(let ((dynamic byte-compile-dynamic)
21922191
(optimize byte-optimize))
21932192
(with-current-buffer outbuffer
21942193
(goto-char (point-min))

0 commit comments

Comments
 (0)