Function: make-nnmaildir--grp--cmacro

make-nnmaildir--grp--cmacro is a function defined in nnmaildir.el.gz.

Signature

(make-nnmaildir--grp--cmacro CL-WHOLE &cl-quote &key NAME NEW CUR MIN COUNT NLIST FLIST MLIST CACHE INDEX MMTH)

Documentation

compiler-macro for inlining make-nnmaildir--grp.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nnmaildir.el.gz
;; Closure converted to defun by helpful.
(defun make-nnmaildir--grp--cmacro
    (cl-whole &rest --cl-rest--)
  "compiler-macro for inlining `make-nnmaildir--grp'.\n\n\\(fn CL-WHOLE &cl-quote &key NAME NEW CUR MIN COUNT NLIST FLIST MLIST CACHE INDEX MMTH)"
  (let*
      ((name
	(car
	 (cdr
	  (plist-member --cl-rest-- ':name))))
       (new
	(car
	 (cdr
	  (plist-member --cl-rest-- ':new))))
       (cur
	(car
	 (cdr
	  (plist-member --cl-rest-- ':cur))))
       (min
	(car
	 (cdr
	  (or
	   (plist-member --cl-rest-- ':min)
	   '(nil 1)))))
       (count
	(car
	 (cdr
	  (or
	   (plist-member --cl-rest-- ':count)
	   '(nil 0)))))
       (nlist
	(car
	 (cdr
	  (plist-member --cl-rest-- ':nlist))))
       (flist
	(car
	 (cdr
	  (plist-member --cl-rest-- ':flist))))
       (mlist
	(car
	 (cdr
	  (plist-member --cl-rest-- ':mlist))))
       (cache
	(car
	 (cdr
	  (plist-member --cl-rest-- ':cache))))
       (index
	(car
	 (cdr
	  (plist-member --cl-rest-- ':index))))
       (mmth
	(car
	 (cdr
	  (plist-member --cl-rest-- ':mmth)))))
    (progn
      (let
	  ((--cl-keys-- --cl-rest--))
	(while --cl-keys--
	  (cond
	   ((memq
	     (car --cl-keys--)
	     '(:name :new :cur :min :count :nlist :flist :mlist :cache :index :mmth :allow-other-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 (:name :new :cur :min :count :nlist :flist :mlist :cache :index :mmth)"
		   (car --cl-keys--))))))
      (cl-block make-nnmaildir--grp--cmacro
	(cl--defsubst-expand
	 '(name new cur min count nlist flist mlist cache index mmth)
	 '(cl-block make-nnmaildir--grp
	    (record 'nnmaildir--grp name new cur min count nlist flist mlist cache index mmth))
	 nil cl-whole nil name new cur min count nlist flist mlist cache index mmth)))))