Function: org-element-at-point-no-context
org-element-at-point-no-context is a byte-compiled function defined in
org-element.el.gz.
Signature
(org-element-at-point-no-context &optional POM)
Documentation
Quickly find element at point or POM.
It is a faster version of org-element-at-point that is not
guaranteed to return correct :parent properties even when cache is
enabled.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
;;;###autoload
(defsubst org-element-at-point-no-context (&optional pom)
"Quickly find element at point or POM.
It is a faster version of `org-element-at-point' that is not
guaranteed to return correct `:parent' properties even when cache is
enabled."
(or (org-element-at-point pom 'cached-only)
(let (org-element-use-cache) (org-element-at-point pom))))