branch: externals/org-contacts
commit a9175a2918d2e6d5400368d9504a617e4eb2b49c
Author: stardiviner <[email protected]>
Commit: stardiviner <[email protected]>
replace `delq` with `delete`
---
org-contacts.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/org-contacts.el b/org-contacts.el
index dbaf379c81..7090e250a0 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