Procházet zdrojové kódy

Improve a docstring

* lisp/org.el (org-delete-all): Improve docstring.
Nicolas Goaziou před 8 roky
rodič
revize
0d72c34937
1 změnil soubory, kde provedl 3 přidání a 1 odebrání
  1. 3 1
      lisp/org.el

+ 3 - 1
lisp/org.el

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