summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstardiviner <numbchild@gmail.com>2026-02-21 16:51:46 +0800
committerstardiviner <numbchild@gmail.com>2026-02-21 16:52:40 +0800
commita9175a2918d2e6d5400368d9504a617e4eb2b49c (patch)
tree536da7fc5913f121c0591ec5706417d28a3e2687
parent664b299856046e92448ac90178913e91da142723 (diff)
replace `delq` with `delete`externals/org-contacts
-rw-r--r--org-contacts.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/org-contacts.el b/org-contacts.el
index dbaf379..7090e25 100644
--- a/org-contacts.el
+++ b/org-contacts.el
@@ -1414,7 +1414,7 @@ to do our best."
(bday (org-contacts-vcard-escape (cdr (assoc-string org-contacts-birthday-property properties))))
(addr (cdr (assoc-string org-contacts-address-property properties)))
(nick (org-contacts-vcard-escape (cdr (assoc-string org-contacts-nickname-property properties))))
- (categories (delq "" (org-split-string (alist-get "TAGS" properties "" nil #'string=) ":")))
+ (categories (delete "" (org-split-string (alist-get "TAGS" properties "" nil #'string=) ":")))
(head (format "BEGIN:VCARD\nVERSION:3.0\nN:%s\nFN:%s\n" n name))
emails-list result phones-list)
(concat