org-update-dblock: Add comment
* lisp/org.el (org-update-dblock): Clarify that `org-update-dblock' is called for side effects. Reported-by: Marcin Borkowski <mbork@mbork.pl> Link: https://orgmode.org/list/87sfg1nfii.fsf@mbork.pl
This commit is contained in:
parent
1f9249eb6e
commit
7ad7796546
|
@ -8800,7 +8800,9 @@ the correct writing function."
|
|||
(let* ((win (selected-window))
|
||||
(pos (point))
|
||||
(line (org-current-line))
|
||||
(params (org-prepare-dblock))
|
||||
(params
|
||||
;; Called for side effect.
|
||||
(org-prepare-dblock))
|
||||
(name (plist-get params :name))
|
||||
(indent (plist-get params :indentation-column))
|
||||
(cmd (intern (concat "org-dblock-write:" name))))
|
||||
|
|
Loading…
Reference in New Issue