Function: profiler-report-toggle-entry
profiler-report-toggle-entry is an interactive and byte-compiled
function defined in profiler.el.gz.
Signature
(profiler-report-toggle-entry &optional ARG)
Documentation
Expand entry at point if the tree is collapsed, otherwise collapse.
With prefix argument, expand all subentries below entry at point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/profiler.el.gz
(defun profiler-report-toggle-entry (&optional arg)
"Expand entry at point if the tree is collapsed, otherwise collapse.
With prefix argument, expand all subentries below entry at
point."
(interactive "P")
(or (profiler-report-expand-entry arg)
(profiler-report-collapse-entry)))