branch: elpa/vm
commit 31b32ce4d25bb941d96561a20c6897db62d33fe5
Author: Stefan Monnier <monn...@iro.umontreal.ca>
Commit: Stefan Monnier <monn...@iro.umontreal.ca>

    Remove Emacs-20 support in vcard.el
---
 lisp/vcard.el | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/lisp/vcard.el b/lisp/vcard.el
index 681d8c07ef..2152c6f681 100644
--- a/lisp/vcard.el
+++ b/lisp/vcard.el
@@ -471,9 +471,7 @@ US domestic telephone numbers are replaced with 
international format."
 ;;; Decoding methods.
 
 (defmacro vcard-hexstring-to-ascii (s)
-  (if (string-lessp emacs-version "20")
-      `(format "%c" (car (read-from-string (format "?\\x%s" ,s))))
-    `(format "%c" (string-to-number ,s 16))))
+  `(format "%c" (string-to-number ,s 16)))
 
 (defun vcard-region-decode-quoted-printable (&optional beg end)
   (save-excursion

Reply via email to