org-babel-current-result-hash: Mark unused argument
* lisp/ob-core.el (org-babel-current-result-hash): Mark INFO argument as unused. `org-babel-where-is-src-block-results' does not use INFO argument even when passed.
This commit is contained in:
parent
f86a2fb726
commit
06714dea79
|
@ -1465,9 +1465,9 @@ CONTEXT specifies the context of evaluation. It can be `:eval',
|
|||
(when (called-interactively-p 'interactive) (message hash))
|
||||
hash))))
|
||||
|
||||
(defun org-babel-current-result-hash (&optional info)
|
||||
(defun org-babel-current-result-hash (&optional _info)
|
||||
"Return the current in-buffer hash."
|
||||
(let ((result (org-babel-where-is-src-block-result nil info)))
|
||||
(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))
|
||||
|
|
Loading…
Reference in New Issue