Function: profiler-report-describe-entry

profiler-report-describe-entry is an interactive and byte-compiled function defined in profiler.el.gz.

Signature

(profiler-report-describe-entry)

Documentation

Describe entry at point.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/profiler.el.gz
(defun profiler-report-describe-entry ()
  "Describe entry at point."
  (interactive)
  (let ((tree (profiler-report-calltree-at-point)))
    (when tree
      (let ((entry (profiler-calltree-entry tree)))
	(require 'help-fns)
	(describe-function entry)))))