Function: comp-nargs-rest--cmacro

comp-nargs-rest--cmacro is a function defined in comp.el.gz.

Signature

(comp-nargs-rest--cmacro _CL-WHOLE-ARG CL-X)

Documentation

compiler-macro for inlining comp-nargs-rest.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
;; Closure converted to defun by helpful.
(defun comp-nargs-rest--cmacro
    (_cl-whole-arg cl-x)
  "compiler-macro for inlining `comp-nargs-rest'."
  (cl-block comp-nargs-rest--cmacro
    (cl--defsubst-expand
     '(cl-x)
     '(cl-block comp-nargs-rest
	(progn
	  (or
	   (comp-nargs-p cl-x)
	   (signal 'wrong-type-argument
		   (list 'comp-nargs cl-x)))
	  (aref cl-x 3)))
     nil nil nil cl-x)))