Function: make-nnmaildir--art--cmacro
make-nnmaildir--art--cmacro is a function defined in nnmaildir.el.gz.
Signature
(make-nnmaildir--art--cmacro CL-WHOLE &cl-quote &key PREFIX SUFFIX NUM MSGID NOV)
Documentation
compiler-macro for inlining make-nnmaildir--art.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnmaildir.el.gz
;; Closure converted to defun by helpful.
(defun make-nnmaildir--art--cmacro
(cl-whole &rest --cl-rest--)
"compiler-macro for inlining `make-nnmaildir--art'.\n\n\\(fn CL-WHOLE &cl-quote &key PREFIX SUFFIX NUM MSGID NOV)"
(let*
((prefix
(car
(cdr
(plist-member --cl-rest-- ':prefix))))
(suffix
(car
(cdr
(plist-member --cl-rest-- ':suffix))))
(num
(car
(cdr
(plist-member --cl-rest-- ':num))))
(msgid
(car
(cdr
(plist-member --cl-rest-- ':msgid))))
(nov
(car
(cdr
(plist-member --cl-rest-- ':nov)))))
(progn
(let
((--cl-keys-- --cl-rest--))
(while --cl-keys--
(cond
((memq
(car --cl-keys--)
'(:prefix :suffix :num :msgid :nov :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 (:prefix :suffix :num :msgid :nov)"
(car --cl-keys--))))))
(cl-block make-nnmaildir--art--cmacro
(cl--defsubst-expand
'(prefix suffix num msgid nov)
'(cl-block make-nnmaildir--art
(record 'nnmaildir--art prefix suffix num msgid nov))
nil cl-whole nil prefix suffix num msgid nov)))))