summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrégoire Jadi <gregoire.jadi@gmail.com>2013-05-09 00:36:23 +0200
committerGrégoire Jadi <gregoire.jadi@gmail.com>2013-05-09 00:37:54 +0200
commitd9d9226c925018c7f941d02e1bfd75d81eef8b5b (patch)
treee3b2bd2bff0f1c5c41937047a9910e011d021dbc
parentc82b34adb611e2f5652d2aa201276a6862d7ec4d (diff)
downloadorg-mode-d9d9226c925018c7f941d02e1bfd75d81eef8b5b.tar.gz
contrib/lisp/org-contacts.el (org-contacts-vcard-format): Silence byte-compiler
* contrib/lisp/org-contacts.el (org-contacts-vcard-format): Silence byte-compiler.
-rw-r--r--contrib/lisp/org-contacts.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/lisp/org-contacts.el b/contrib/lisp/org-contacts.el
index d81d43b..7b0b603 100644
--- a/contrib/lisp/org-contacts.el
+++ b/contrib/lisp/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))