Function: profiler-calltree-count-percent--cmacro

profiler-calltree-count-percent--cmacro is a function defined in profiler.el.gz.

Signature

(profiler-calltree-count-percent--cmacro _CL-WHOLE-ARG CL-X)

Documentation

compiler-macro for inlining profiler-calltree-count-percent.

Source Code

;; Defined in /usr/src/emacs/lisp/profiler.el.gz
;; Closure converted to defun by helpful.
(defun profiler-calltree-count-percent--cmacro
    (_cl-whole-arg cl-x)
  "compiler-macro for inlining `profiler-calltree-count-percent'."
  (cl-block profiler-calltree-count-percent--cmacro
    (cl--defsubst-expand
     '(cl-x)
     '(cl-block profiler-calltree-count-percent
	(progn
	  (or
	   (profiler-calltree-p cl-x)
	   (signal 'wrong-type-argument
		   (list 'profiler-calltree cl-x)))
	  (aref cl-x 3)))
     nil nil nil cl-x)))