Function: org-prepare-dblock
org-prepare-dblock is a byte-compiled function defined in org.el.gz.
Signature
(org-prepare-dblock)
Documentation
Prepare dynamic block for refresh.
This empties the block, puts the cursor at the insert position and returns the property list including an extra property :name with the block name.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-prepare-dblock ()
"Prepare dynamic block for refresh.
This empties the block, puts the cursor at the insert position and returns
the property list including an extra property :name with the block name."
(unless (looking-at org-dblock-start-re)
(user-error "Not at a dynamic block"))
(let* ((begdel (1+ (match-end 0)))
(name (org-no-properties (match-string 1)))
(params (append (list :name name)
(read (concat "(" (match-string 3) ")")))))
(save-excursion
(forward-line 0)
(skip-chars-forward " \t")
(setq params (plist-put params :indentation-column (current-column))))
(unless (re-search-forward org-dblock-end-re nil t)
(error "Dynamic block not terminated"))
(setq params
(append params
(list :content (buffer-substring
begdel (match-beginning 0)))))
(delete-region begdel (match-beginning 0))
(goto-char begdel)
(open-line 1)
params))