Function: epg-sub-key-algorithm--cmacro

epg-sub-key-algorithm--cmacro is a function defined in epg.el.gz.

Signature

(epg-sub-key-algorithm--cmacro _CL-WHOLE-ARG CL-X)

Documentation

compiler-macro for inlining epg-sub-key-algorithm.

Source Code

;; Defined in /usr/src/emacs/lisp/epg.el.gz
;; Closure converted to defun by helpful.
(defun epg-sub-key-algorithm--cmacro
    (_cl-whole-arg cl-x)
  "compiler-macro for inlining `epg-sub-key-algorithm'."
  (cl-block epg-sub-key-algorithm--cmacro
    (cl--defsubst-expand
     '(cl-x)
     '(cl-block epg-sub-key-algorithm
	(progn
	  (or
	   (cl--struct-epg-sub-key-p cl-x)
	   (signal 'wrong-type-argument
		   (list 'epg-sub-key cl-x)))
	  (aref cl-x 4)))
     nil nil nil cl-x)))