Function: frameset-p--cmacro

frameset-p--cmacro is a function defined in frameset.el.gz.

Signature

(frameset-p--cmacro _CL-WHOLE-ARG CL-X)

Documentation

compiler-macro for inlining frameset-p.

Source Code

;; Defined in /usr/src/emacs/lisp/frameset.el.gz
;; Closure converted to defun by helpful.
(defun frameset-p--cmacro
    (_cl-whole-arg cl-x)
  "compiler-macro for inlining `frameset-p'."
  (cl-block frameset-p--cmacro
    (cl--defsubst-expand
     '(cl-x)
     '(cl-block frameset-p
	(and
	 (vectorp cl-x)
	 (>=
	  (length cl-x)
	  8)
	 (memq
	  (aref cl-x 0)
	  cl-struct-frameset-tags)
	 t))
     nil nil nil cl-x)))