summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2016-06-24 09:22:00 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2016-06-24 09:22:00 +0200
commitf3642291765229babca4b538e1806c3473df97a0 (patch)
tree9ceb2a5adb0d8813eea244d06386997adb16d20b
parentbffa144f540471983bc77b1dad433f105571cef6 (diff)
parent0d72c3493782e418a4aab8ce6f3cb552fdb089e5 (diff)
downloadorg-mode-f3642291765229babca4b538e1806c3473df97a0.tar.gz
Merge branch 'maint'
-rw-r--r--lisp/org.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 115f159..8630d78 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -22693,7 +22693,9 @@ The function returns the new ALIST."
(push n 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)