Function: org-element-property--inliner

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

Signature

(org-element-property--inliner INLINE--FORM PROPERTY NODE &optional DFLT FORCE-UNDEFER)

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 node &optional dflt force-undefer)
  ((ignore inline--form)
   (catch 'inline--just-use
     (if
	 (and
	  (or (macroexp-const-p property)
	      (eq (car-safe property) 'function))
	  (not
	   (memq
	    (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))
	    '(:deferred :parent)))
	  (org-element--property-idx
	   (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))))
	 (list 'org-element-property-raw property node dflt)
       (list 'org-element--property property node dflt force-undefer))))
  (t)]