org-contacts: use `org-' prefixed variants of cl functions
* contrib/lisp/org-contacts.el (org-contacts-remove-ignored-property-values): Use `org-remove-if' and `org-find-if' instead of the unprefixed variants.
This commit is contained in:
parent
25211e8066
commit
d6824ec3c2
1 changed files with 5 additions and 5 deletions
|
@ -516,8 +516,8 @@ A group FOO is composed of contacts with the tag FOO."
|
||||||
(defun org-contacts-remove-ignored-property-values (ignore-list list)
|
(defun org-contacts-remove-ignored-property-values (ignore-list list)
|
||||||
"Remove all ignore-list's elements from list and you can use
|
"Remove all ignore-list's elements from list and you can use
|
||||||
regular expressions in the ignore list."
|
regular expressions in the ignore list."
|
||||||
(remove-if (lambda (el)
|
(org-remove-if (lambda (el)
|
||||||
(find-if (lambda (x)
|
(org-find-if (lambda (x)
|
||||||
(string-match-p x el))
|
(string-match-p x el))
|
||||||
ignore-list))
|
ignore-list))
|
||||||
list))
|
list))
|
||||||
|
|
Loading…
Reference in a new issue