mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-12-04 08:47:03 +00:00
Improve a docstring
* lisp/org.el (org-delete-all): Improve docstring.
This commit is contained in:
parent
2f2e6625ac
commit
0d72c34937
@ -22720,7 +22720,9 @@ The function returns the new ALIST."
|
||||
rtn))
|
||||
|
||||
(defun org-delete-all (elts list)
|
||||
"Remove all elements in ELTS from LIST."
|
||||
"Remove all elements in ELTS from LIST.
|
||||
Comparison is done with `equal'. It is a destructive operation
|
||||
that may remove elements by altering the list structure."
|
||||
(while elts
|
||||
(setq list (delete (pop elts) list)))
|
||||
list)
|
||||
|
Loading…
Reference in New Issue
Block a user