From ef8e4b57ed2dc502b5128321d375f5cf2f215413 Mon Sep 17 00:00:00 2001 From: Feng Shu Date: Sun, 7 Apr 2013 11:12:09 +0800 Subject: [PATCH] org-contacts.el , fix bugs about 'tel and 'note properties * contrib/lisp/org-contacts.el (org-contacts-vcard-format): Fix bug by taking the "tel" and "note" properties into account. --- contrib/lisp/org-contacts.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/lisp/org-contacts.el b/contrib/lisp/org-contacts.el index f529014fa..65eeea8a4 100644 --- a/contrib/lisp/org-contacts.el +++ b/contrib/lisp/org-contacts.el @@ -834,6 +834,8 @@ to do our best." (name (org-contacts-vcard-escape (car contact))) (n (org-contacts-vcard-encode-name name)) (email (cdr (assoc-string org-contacts-email-property properties))) + (tel (cdr (assoc-string org-contacts-tel-property properties))) + (note (cdr (assoc-string org-contacts-note-property properties))) (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))))