Fix elisp-byte-compile-buffer requirements
* lisp/progmodes/elisp-mode.el (elisp-byte-compile-buffer): Require bytecomp so that byte-compile-dest-file-function is defined. (The byte compiler didn't catch this, because it's defined in bytecomp.)
This commit is contained in:
parent
467a02d69e
commit
3a4c408a7b
1 changed files with 1 additions and 0 deletions
|
@ -2223,6 +2223,7 @@ interactively, this is the prefix argument."
|
|||
(interactive "P")
|
||||
(let ((bfn buffer-file-name)
|
||||
file elc)
|
||||
(require 'bytecomp)
|
||||
(unwind-protect
|
||||
(progn
|
||||
(setq file (make-temp-file "compile" nil ".el")
|
||||
|
|
Loading…
Add table
Reference in a new issue