Function: profiler-calltree-walk
profiler-calltree-walk is a byte-compiled function defined in
profiler.el.gz.
Signature
(profiler-calltree-walk CALLTREE FUNCTION)
Source Code
;; Defined in /usr/src/emacs/lisp/profiler.el.gz
(defun profiler-calltree-walk (calltree function)
(funcall function calltree)
(dolist (child (profiler-calltree-children calltree))
(profiler-calltree-walk child function)))