Parcourir la source

Merge branch 'maint'

Nicolas Goaziou il y a 8 ans
Parent
commit
f364229176
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. 3 1
      lisp/org.el

+ 3 - 1
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)