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