mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-25 07:27:57 +00:00
org-export: Improve a docstring
* contrib/lisp/org-export.el (org-export-get-genealogy): Improve docstring.
This commit is contained in:
parent
f88679a399
commit
9028c4655f
@ -3991,7 +3991,11 @@ BLOB is the element or object considered."
|
||||
|
||||
(defun org-export-get-genealogy (blob)
|
||||
"Return full genealogy relative to a given element or object.
|
||||
BLOB is the element or object being considered."
|
||||
|
||||
BLOB is the element or object being considered.
|
||||
|
||||
Ancestors are returned from closest to farthest, the last one
|
||||
being the full parse tree."
|
||||
(let (genealogy (parent blob))
|
||||
(while (setq parent (org-element-property :parent parent))
|
||||
(push parent genealogy))
|
||||
|
Loading…
Reference in New Issue
Block a user