Function: epg-make-sub-key--cmacro
epg-make-sub-key--cmacro is a function defined in epg.el.gz.
Signature
(epg-make-sub-key--cmacro _CL-WHOLE-ARG VALIDITY CAPABILITY SECRET-P ALGORITHM LENGTH ID CREATION-TIME EXPIRATION-TIME)
Documentation
compiler-macro for inlining epg-make-sub-key.
Source Code
;; Defined in /usr/src/emacs/lisp/epg.el.gz
;; Closure converted to defun by helpful.
(defun epg-make-sub-key--cmacro
(_cl-whole-arg validity capability secret-p algorithm length id creation-time expiration-time)
"compiler-macro for inlining `epg-make-sub-key'."
(cl-block epg-make-sub-key--cmacro
(cl--defsubst-expand
'(validity capability secret-p algorithm length id creation-time expiration-time)
'(cl-block epg-make-sub-key
(record 'epg-sub-key validity capability secret-p algorithm length id creation-time expiration-time nil))
nil nil nil validity capability secret-p algorithm length id creation-time expiration-time)))