Function: epg-make-new-signature--cmacro

epg-make-new-signature--cmacro is a function defined in epg.el.gz.

Signature

(epg-make-new-signature--cmacro _CL-WHOLE-ARG TYPE PUBKEY-ALGORITHM DIGEST-ALGORITHM CLASS CREATION-TIME FINGERPRINT)

Documentation

compiler-macro for inlining epg-make-new-signature.

Source Code

;; Defined in /usr/src/emacs/lisp/epg.el.gz
;; Closure converted to defun by helpful.
(defun epg-make-new-signature--cmacro
    (_cl-whole-arg type pubkey-algorithm digest-algorithm class creation-time fingerprint)
  "compiler-macro for inlining `epg-make-new-signature'."
  (cl-block epg-make-new-signature--cmacro
    (cl--defsubst-expand
     '(type pubkey-algorithm digest-algorithm class creation-time fingerprint)
     '(cl-block epg-make-new-signature
	(record 'epg-new-signature type pubkey-algorithm digest-algorithm class creation-time fingerprint))
     nil nil nil type pubkey-algorithm digest-algorithm class creation-time fingerprint)))