>From 8a1fdc7f87425fc6f7d6909fc9dc10cc0ca1745d Mon Sep 17 00:00:00 2001 From: Simon Thum Date: Sun, 22 Sep 2013 13:43:06 +0200 Subject: [PATCH] un-hexify TEL links in vCard export This is required as a plus sign (e.g. +49 for germany) will cause hexification in the link helper. contrib/lisp/org-contacts.el: unhexify tel link TINYCHANGE --- contrib/lisp/org-contacts.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/lisp/org-contacts.el b/contrib/lisp/org-contacts.el index 97171d0..dbbc057 100644 --- a/contrib/lisp/org-contacts.el +++ b/contrib/lisp/org-contacts.el @@ -946,7 +946,7 @@ to do our best." (setq phones-list (org-contacts-remove-ignored-property-values ignore-list (org-contacts-split-property tel))) (setq result "") (while phones-list - (setq result (concat result "TEL:" (org-contacts-strip-link (car phones-list)) "\n")) + (setq result (concat result "TEL:" (org-link-unescape (org-contacts-strip-link (car phones-list))) "\n")) (setq phones-list (cdr phones-list))) result)) (when bday -- 1.8.1.5