diff options
| author | stardiviner <numbchild@gmail.com> | 2026-02-21 16:51:46 +0800 |
|---|---|---|
| committer | stardiviner <numbchild@gmail.com> | 2026-02-21 16:52:40 +0800 |
| commit | a9175a2918d2e6d5400368d9504a617e4eb2b49c (patch) | |
| tree | 536da7fc5913f121c0591ec5706417d28a3e2687 | |
| parent | 664b299856046e92448ac90178913e91da142723 (diff) | |
replace `delq` with `delete`externals/org-contacts
| -rw-r--r-- | org-contacts.el | 2 |
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 |
