Function: byte-to-native-top-level-p--cmacro

byte-to-native-top-level-p--cmacro is a function defined in bytecomp.el.gz.

Signature

(byte-to-native-top-level-p--cmacro _CL-WHOLE-ARG CL-X)

Documentation

compiler-macro for inlining byte-to-native-top-level-p.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
;; Closure converted to defun by helpful.
(defun byte-to-native-top-level-p--cmacro
    (_cl-whole-arg cl-x)
  "compiler-macro for inlining `byte-to-native-top-level-p'."
  (cl-block byte-to-native-top-level-p--cmacro
    (cl--defsubst-expand
     '(cl-x)
     '(cl-block byte-to-native-top-level-p
	(and
	 (memq
	  (type-of cl-x)
	  cl-struct-byte-to-native-top-level-tags)
	 t))
     nil nil nil cl-x)))