Function: elp-instrument-list

elp-instrument-list is an autoloaded, interactive and byte-compiled function defined in elp.el.gz.

Signature

(elp-instrument-list &optional LIST)

Documentation

Instrument, for profiling, all functions in elp-function-list.

Use optional LIST if provided instead. If called interactively, prompt for LIST in the minibuffer; type "nil" to use elp-function-list.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/elp.el.gz
;;;###autoload
(defun elp-instrument-list (&optional list)
  "Instrument, for profiling, all functions in `elp-function-list'.
Use optional LIST if provided instead.
If called interactively, prompt for LIST in the minibuffer;
type \"nil\" to use `elp-function-list'."
  (interactive "xList of functions to instrument: ")
  (unless (listp list)
    (signal 'wrong-type-argument (list 'listp list)))
  (mapcar #'elp-instrument-function (or list elp-function-list)))