Function: dired-do-load

dired-do-load is an autoloaded, interactive and byte-compiled function defined in dired-aux.el.gz.

Signature

(dired-do-load &optional ARG)

Documentation

Load the marked (or next ARG) Emacs Lisp files.

When called from Lisp, if ARG is the symbol marked, load only the marked files, or none if no files are marked.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/dired-aux.el.gz
;;;###autoload
(defun dired-do-load (&optional arg)
  "Load the marked (or next ARG) Emacs Lisp files.

When called from Lisp, if ARG is the symbol `marked', load
only the marked files, or none if no files are marked."
  (interactive "P" dired-mode)
  (dired-map-over-marks-check #'dired-load arg 'load t))