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