Function: org-persist-write-all-buffer

org-persist-write-all-buffer is a byte-compiled function defined in org-persist.el.gz.

Signature

(org-persist-write-all-buffer)

Documentation

Call org-persist-write-all in current buffer.

Do nothing in an indirect buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-persist.el.gz
(defun org-persist-write-all-buffer ()
  "Call `org-persist-write-all' in current buffer.
Do nothing in an indirect buffer."
  (unless (buffer-base-buffer (current-buffer))
    (org-persist-write-all (current-buffer))))