Function: elp-reset-all

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

Signature

(elp-reset-all)

Documentation

Reset the profiling information for all functions being profiled.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/elp.el.gz
(defun elp-reset-all ()
  "Reset the profiling information for all functions being profiled."
  (interactive)
  (mapatoms (lambda (sym)
              (if (get sym elp-timer-info-property)
                  (elp-reset-function sym)))))