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 X)

Documentation

Remove the result of the current source block.

If called with a prefix argument, 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 (x)
  "Remove the result of the current source block.
If called with a prefix argument, remove all result blocks
in the buffer."
  (interactive "P")
  (if x
      (org-babel-map-src-blocks nil (org-babel-remove-result))
    (org-babel-remove-result)))