Function: org-delete-all
org-delete-all is a byte-compiled function defined in org-macs.el.gz.
Signature
(org-delete-all ELTS LIST)
Documentation
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.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-macs.el.gz
(defun org-delete-all (elts 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)