Function: profiler-calltree-depth

profiler-calltree-depth is a byte-compiled function defined in profiler.el.gz.

Signature

(profiler-calltree-depth TREE)

Source Code

;; Defined in /usr/src/emacs/lisp/profiler.el.gz
(defun profiler-calltree-depth (tree)
  (let ((d 0))
    (while (setq tree (profiler-calltree-parent tree))
      (incf d))
    d))