Function: dired-do-byte-compile
dired-do-byte-compile is an autoloaded, interactive and byte-compiled
function defined in dired-aux.el.gz.
Signature
(dired-do-byte-compile &optional ARG)
Documentation
Byte compile marked (or next ARG) Emacs Lisp files.
When called from Lisp, if ARG is the symbol marked, byte-compile
only the marked files, or none if no files are marked.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/dired-aux.el.gz
;;;###autoload
(defun dired-do-byte-compile (&optional arg)
"Byte compile marked (or next ARG) Emacs Lisp files.
When called from Lisp, if ARG is the symbol `marked', byte-compile
only the marked files, or none if no files are marked."
(interactive "P" dired-mode)
(dired-map-over-marks-check #'dired-byte-compile arg 'byte-compile t))