Function: org-dblock-update
org-dblock-update is an interactive and byte-compiled function defined
in org.el.gz.
Signature
(org-dblock-update &optional ARG)
Documentation
User command for updating dynamic blocks.
Update the dynamic block at point. With prefix ARG, update all dynamic blocks in the buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-dblock-update (&optional arg)
"User command for updating dynamic blocks.
Update the dynamic block at point. With prefix ARG, update all dynamic
blocks in the buffer."
(interactive "P")
(if arg
(org-update-all-dblocks)
(or (looking-at org-dblock-start-re)
(org-beginning-of-dblock))
(org-update-dblock)))