Function: make-byte-to-native-top-level--cmacro
make-byte-to-native-top-level--cmacro is a function defined in
bytecomp.el.gz.
Signature
(make-byte-to-native-top-level--cmacro CL-WHOLE &cl-quote &key FORM LEXICAL)
Documentation
compiler-macro for make-byte-to-native-top-level.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
;; Could not find source code, showing raw function object.
#[(cl-whole &rest --cl-rest--)
((let*
((form (car (cdr (plist-member --cl-rest-- ':form))))
(lexical (car (cdr (plist-member --cl-rest-- ':lexical)))))
(progn
(let ((--cl-keys-- --cl-rest--))
(while --cl-keys--
(cond
((memq (car --cl-keys--)
'(:form :lexical :allow-other-keys))
(unless (cdr --cl-keys--)
(error "Missing argument for %s" (car --cl-keys--)))
(setq --cl-keys-- (cdr (cdr --cl-keys--))))
((car (cdr (memq ':allow-other-keys --cl-rest--)))
(setq --cl-keys-- nil))
(t
(error "Keyword argument %s not one of (:form :lexical)"
(car --cl-keys--))))))
(cl-block make-byte-to-native-top-level--cmacro
(cl--defsubst-expand '(form lexical)
'(cl-block make-byte-to-native-top-level
(record 'byte-to-native-top-level
form lexical))
nil cl-whole nil form lexical)))))
(t) nil
"compiler-macro for `make-byte-to-native-top-level'.\n\n(fn CL-WHOLE &cl-quote &key FORM LEXICAL)"]