Function: elp-restore-list
elp-restore-list is an interactive and byte-compiled function defined
in elp.el.gz.
Signature
(elp-restore-list &optional LIST)
Documentation
Restore the original definitions for all functions in elp-function-list.
Use optional LIST if provided instead.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/elp.el.gz
(defun elp-restore-list (&optional list)
"Restore the original definitions for all functions in `elp-function-list'.
Use optional LIST if provided instead."
(interactive)
(mapcar #'elp-restore-function (or list elp-function-list)))