Function: ewoc--dll--cmacro

ewoc--dll--cmacro is a function defined in ewoc.el.gz.

Signature

(ewoc--dll--cmacro _CL-WHOLE-ARG CL-X)

Documentation

compiler-macro for inlining ewoc--dll.

Source Code

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