Function: org-babel-active-location-p
org-babel-active-location-p is a byte-compiled function defined in
ob-core.el.gz.
Signature
(org-babel-active-location-p)
Documentation
Return non-nil, when at executable element.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ob-core.el.gz
(defun org-babel-active-location-p ()
"Return non-nil, when at executable element."
(org-element-type-p
(save-match-data (org-element-context))
'(babel-call inline-babel-call inline-src-block src-block)))