From a3c24bc7c8d95d0c3ceba1209cc0a96bcac15e11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Jadi?= Date: Thu, 9 May 2013 00:36:23 +0200 Subject: [PATCH] contrib/lisp/org-contacts.el (org-contacts-vcard-format): Silence byte-compiler * contrib/lisp/org-contacts.el (org-contacts-vcard-format): Silence byte-compiler. --- org-contacts.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/org-contacts.el b/org-contacts.el index d81d43b..7b0b603 100644 --- a/org-contacts.el +++ b/org-contacts.el @@ -873,7 +873,8 @@ 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)))) - (head (format "BEGIN:VCARD\nVERSION:3.0\nN:%s\nFN:%s\n" n name))) + (head (format "BEGIN:VCARD\nVERSION:3.0\nN:%s\nFN:%s\n" n name)) + emails-list result phones-list) (concat head (when email (progn (setq emails-list (org-contacts-split-property email))