Function: org-babel-hide-all-hashes

org-babel-hide-all-hashes is a byte-compiled function defined in ob-core.el.gz.

Signature

(org-babel-hide-all-hashes)

Documentation

Hide the hash in the current buffer.

Only the initial org-babel-hash-show characters of each hash will remain visible. This function should be called as part of the org-mode-hook.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ob-core.el.gz
(defun org-babel-hide-all-hashes ()
  "Hide the hash in the current buffer.
Only the initial `org-babel-hash-show' characters of each hash
will remain visible.  This function should be called as part of
the `org-mode-hook'."
  (save-excursion
    (let ((case-fold-search t))
      (while (and (not org-babel-hash-show-time)
		  (re-search-forward org-babel-result-regexp nil t))
	(goto-char (match-beginning 0))
	(org-babel-hide-hash)
	(goto-char (match-end 0))))))