Function: org-element--property-idx--inliner

org-element--property-idx--inliner is a function defined in org-element-ast.el.gz.

Signature

(org-element--property-idx--inliner INLINE--FORM PROPERTY)

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-element-ast.el.gz
;; Could not find source code, showing raw function object.
#[(inline--form property)
  ((ignore inline--form)
   (catch 'inline--just-use
     (let*
	 ((exp property)
	  (property
	   (if (macroexp-copyable-p exp) exp (make-symbol "property")))
	  (body
	   (plist-get org-element--standard-properties-idxs
		      (cond
		       ((not
			 (or (macroexp-const-p property)
			     (eq (car-safe property) 'function)))
			(throw 'inline--just-use inline--form))
		       ((consp property) (car (cdr property)))
		       (t property)))))
       (if (eq property exp) body
	 (macroexp-let* (list (list property exp)) body)))))
  (t)]