Variable: elp-report-limit

elp-report-limit is a customizable variable defined in elp.el.gz.

Value

1

Documentation

Prevent some functions from being displayed in the results buffer.

If a number, no function that has been called fewer than that number of times will be displayed in the output buffer. If nil, all functions will be displayed.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/elp.el.gz
(defcustom elp-report-limit 1
  "Prevent some functions from being displayed in the results buffer.
If a number, no function that has been called fewer than that number
of times will be displayed in the output buffer.  If nil, all
functions will be displayed."
  :type '(choice integer
                 (const :tag "Show All" nil))
  :group 'elp)