Function: ebrowse-ts-p--inliner

ebrowse-ts-p--inliner is a function defined in ebrowse.el.gz.

Signature

(ebrowse-ts-p--inliner INLINE--FORM X)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
;; Could not find source code, showing raw function object.
#[(inline--form x)
  ((ignore inline--form)
   (catch 'inline--just-use
     (let*
	 ((exp x)
	  (x (if (macroexp-copyable-p exp) exp (make-symbol "x")))
	  (body
	   (list 'and (list 'vectorp x) (list '>= (list 'length x) 11)
		 (list 'memq (list 'aref x 0)
		       'cl-struct-ebrowse-ts-tags)
		 t)))
       (if (eq x exp) body (macroexp-let* (list (list x exp)) body)))))
  (cl-struct-ebrowse-ts-tags cl-struct-ebrowse-ts-tags)]