org-indent-drawer, org-indent-block: Update docstring
* lisp/org.el (org-indent-drawer): (org-indent-block): Document that an error is signaled when not at a drawer/block. Reported-by: gerard.vermeulen@posteo.net Link: https://list.orgmode.org/orgmode/abc9e25cebcba21d941435e5f39e72d9@posteo.net/
This commit is contained in:
parent
77a1ddd39f
commit
1aa4552e5c
|
@ -19631,7 +19631,8 @@ assumed to be significant there."
|
|||
(set-marker end nil))))
|
||||
|
||||
(defun org-indent-drawer ()
|
||||
"Indent the drawer at point."
|
||||
"Indent the drawer at point.
|
||||
Signal an error when not at a drawer."
|
||||
(interactive)
|
||||
(let ((element (org-element-at-point)))
|
||||
(unless (org-element-type-p element '(drawer property-drawer))
|
||||
|
@ -19642,7 +19643,8 @@ assumed to be significant there."
|
|||
(message "Drawer at point indented"))
|
||||
|
||||
(defun org-indent-block ()
|
||||
"Indent the block at point."
|
||||
"Indent the block at point.
|
||||
Signal an error when not at a block."
|
||||
(interactive)
|
||||
(let ((element (org-element-at-point)))
|
||||
(unless (org-element-type-p
|
||||
|
|
Loading…
Reference in New Issue