Function: elp-reset-list

elp-reset-list is an interactive and byte-compiled function defined in elp.el.gz.

Signature

(elp-reset-list &optional LIST)

Documentation

Reset the profiling information 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-reset-list (&optional list)
  "Reset the profiling information for all functions in `elp-function-list'.
Use optional LIST if provided instead."
  (interactive "PList of functions to reset: ") ;FIXME: Doesn't work!?
  (let ((list (or list elp-function-list)))
    (mapcar 'elp-reset-function list)))