Function: cvs-flags-persist--cmacro

cvs-flags-persist--cmacro is a function defined in pcvs-util.el.gz.

Signature

(cvs-flags-persist--cmacro _CL-WHOLE-ARG CL-X)

Documentation

compiler-macro for inlining cvs-flags-persist.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/pcvs-util.el.gz
;; Closure converted to defun by helpful.
(defun cvs-flags-persist--cmacro
    (_cl-whole-arg cl-x)
  "compiler-macro for inlining `cvs-flags-persist'."
  (cl-block cvs-flags-persist--cmacro
    (cl--defsubst-expand
     '(cl-x)
     '(cl-block cvs-flags-persist
	(progn
	  (or
	   (cvs-flags-p cl-x)
	   (signal 'wrong-type-argument
		   (list 'cvs-flags cl-x)))
	  (aref cl-x 2)))
     nil nil nil cl-x)))