Function: org-babel-remove-result-one-or-many
org-babel-remove-result-one-or-many is an interactive and
byte-compiled function defined in ob-core.el.gz.
Signature
(org-babel-remove-result-one-or-many ARG)
Documentation
Remove the result of the current source block.
If called with prefix argument ARG, remove all result blocks in the buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/ob-core.el.gz
(defun org-babel-remove-result-one-or-many (arg)
"Remove the result of the current source block.
If called with prefix argument ARG, remove all result blocks in the
buffer."
(interactive "P")
(if arg
(org-babel-map-src-blocks nil (org-babel-remove-result))
(org-babel-remove-result)))