Function: make-comp-data-container--cmacro

make-comp-data-container--cmacro is a function defined in comp.el.gz.

Signature

(make-comp-data-container--cmacro CL-WHOLE &cl-quote &key L IDX)

Documentation

compiler-macro for make-comp-data-container.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
;; Could not find source code, showing raw function object.
#[(cl-whole &rest --cl-rest--)
  ((let*
       ((l (car (cdr (plist-member --cl-rest-- ':l))))
	(idx
	 (car
	  (cdr
	   (or (plist-member --cl-rest-- ':idx)
	       '(nil (make-hash-table :test 'comp-imm-equal-test)))))))
     (progn
       (let ((--cl-keys-- --cl-rest--))
	 (while --cl-keys--
	   (cond
	    ((memq (car --cl-keys--) '(:l :idx :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 (:l :idx)"
		    (car --cl-keys--))))))
       (cl-block make-comp-data-container--cmacro
	 (cl--defsubst-expand '(l idx)
			      '(cl-block make-comp-data-container
				 (record 'comp-data-container l idx))
			      nil cl-whole nil l idx)))))
  (cl-struct-comp-data-container-tags) nil
  "compiler-macro for `make-comp-data-container'.\n\n(fn CL-WHOLE &cl-quote &key L IDX)"]