emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] scratch/org-contacts-rebased cfa1db0 081/118: Remove some home-gr


From: Stefan Monnier
Subject: [elpa] scratch/org-contacts-rebased cfa1db0 081/118: Remove some home-grown copies of cl-lib functions.
Date: Fri, 12 Nov 2021 15:37:08 -0500 (EST)

branch: scratch/org-contacts-rebased
commit cfa1db02bad0bfac149f645d433a055a29c36382
Author: Aaron Ecay <aaronecay@gmail.com>
Commit: Aaron Ecay <aaronecay@gmail.com>

    Remove some home-grown copies of cl-lib functions.
    
    * lisp/org.el (org-count, org-remove-if, org-remove-if-not):
    (org-reduce, org-every, org-some): Obsolete, use cl-lib versions
    everywhere.
    (org-sublist): Reimplement in terms of `cl-subseq'; make obsolete.
---
 org-contacts.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/org-contacts.el b/org-contacts.el
index edc09fe..c0f054f 100644
--- a/org-contacts.el
+++ b/org-contacts.el
@@ -593,7 +593,7 @@ description."
 (defun org-contacts-remove-ignored-property-values (ignore-list list)
   "Remove all ignore-list's elements from list and you can use
    regular expressions in the ignore list."
-    (org-remove-if (lambda (el)
+    (cl-remove-if (lambda (el)
                     (org-find-if (lambda (x)
                                    (string-match-p x el))
                                  ignore-list))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]