Function: edebug--frame-before-index--cmacro
edebug--frame-before-index--cmacro is a function defined in
edebug.el.gz.
Signature
(edebug--frame-before-index--cmacro _CL-WHOLE-ARG CL-X)
Documentation
compiler-macro for inlining edebug--frame-before-index.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
;; Closure converted to defun by helpful.
(defun edebug--frame-before-index--cmacro
(_cl-whole-arg cl-x)
"compiler-macro for inlining `edebug--frame-before-index'."
(cl-block edebug--frame-before-index--cmacro
(cl--defsubst-expand
'(cl-x)
'(cl-block edebug--frame-before-index
(progn
(or
(edebug--frame-p cl-x)
(signal 'wrong-type-argument
(list 'edebug--frame cl-x)))
(aref cl-x 9)))
nil nil nil cl-x)))