Function: epg-sig-notation-human-readable--cmacro
epg-sig-notation-human-readable--cmacro is a function defined in
epg.el.gz.
Signature
(epg-sig-notation-human-readable--cmacro _CL-WHOLE-ARG CL-X)
Documentation
compiler-macro for inlining epg-sig-notation-human-readable.
Source Code
;; Defined in /usr/src/emacs/lisp/epg.el.gz
;; Closure converted to defun by helpful.
(defun epg-sig-notation-human-readable--cmacro
(_cl-whole-arg cl-x)
"compiler-macro for inlining `epg-sig-notation-human-readable'."
(cl-block epg-sig-notation-human-readable--cmacro
(cl--defsubst-expand
'(cl-x)
'(cl-block epg-sig-notation-human-readable
(progn
(or
(cl--struct-epg-sig-notation-p cl-x)
(signal 'wrong-type-argument
(list 'epg-sig-notation cl-x)))
(aref cl-x 3)))
nil nil nil cl-x)))