Function: comp-nargs-rest--inliner

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

Signature

(comp-nargs-rest--inliner INLINE--FORM X)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
;; Could not find source code, showing raw function object.
#[(inline--form x)
  ((ignore inline--form)
   (catch 'inline--just-use
     (let*
	 ((exp x)
	  (x (if (macroexp-copyable-p exp) exp (make-symbol "x")))
	  (body
	   (list 'progn
		 (list 'or (list 'comp-nargs-p x)
		       (list 'signal
			     (list 'quote 'wrong-type-argument)
			     (list 'list (list 'quote 'comp-nargs) x)))
		 (list 'aref x 3))))
       (if (eq x exp) body (macroexp-let* (list (list x exp)) body)))))
  (cl-struct-comp-nargs-tags)]