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 "PList of functions to restore: ") ;FIXME: Doesn't work!?
  (mapcar #'elp-restore-function (or list elp-function-list)))