Function: org-update-all-dblocks

org-update-all-dblocks is an interactive and byte-compiled function defined in org.el.gz.

Signature

(org-update-all-dblocks)

Documentation

Update all dynamic blocks in the buffer.

This function can be used in a hook.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-update-all-dblocks ()
  "Update all dynamic blocks in the buffer.
This function can be used in a hook."
  (interactive)
  (when (derived-mode-p 'org-mode)
    (org-map-dblocks 'org-update-dblock)))