emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org-contacts 3a24177c3a 070/154: un-hexify TEL links in


From: ELPA Syncer
Subject: [elpa] externals/org-contacts 3a24177c3a 070/154: un-hexify TEL links in vCard export
Date: Fri, 9 Sep 2022 15:58:27 -0400 (EDT)

branch: externals/org-contacts
commit 3a24177c3a9efe0e55d20d1531ec9f54b31ef478
Author: Simon Thum <simon.thum@gmx.de>
Commit: Bastien Guerry <bzg@altern.org>

    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
---
 org-contacts.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/org-contacts.el b/org-contacts.el
index 97171d0377..dbbc057904 100644
--- a/org-contacts.el
+++ b/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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]