Function: emacs-lisp-byte-compile
emacs-lisp-byte-compile is an interactive and byte-compiled function
defined in elisp-mode.el.gz.
Signature
(emacs-lisp-byte-compile)
Documentation
Byte-compile the current buffer's file.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/elisp-mode.el.gz
(defun emacs-lisp-byte-compile ()
"Byte-compile the current buffer's file."
(interactive nil emacs-lisp-mode)
(if buffer-file-name
(byte-compile-file buffer-file-name)
(error "The buffer must be saved in a file first")))