0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 21:07:54 +00:00

Improve a docstring

* lisp/org.el (org-delete-all): Improve docstring.
This commit is contained in:
Nicolas Goaziou 2016-06-24 09:21:38 +02:00
parent 2f2e6625ac
commit 0d72c34937

View file

@ -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)