Function: org-babel-current-result-hash

org-babel-current-result-hash is a byte-compiled function defined in ob-core.el.gz.

Signature

(org-babel-current-result-hash &optional INFO)

Documentation

Return the current in-buffer hash.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ob-core.el.gz
(defun org-babel-current-result-hash (&optional _info)
  "Return the current in-buffer hash."
  (let ((result (org-babel-where-is-src-block-result nil)))
    (when result
      (org-with-point-at result
	(let ((case-fold-search t)) (looking-at org-babel-result-regexp))
	(match-string-no-properties 1)))))