emacs-orgmode
[Top][All Lists]
Advanced

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

[Orgmode] [PATCH 16/16] Throw error if encoding character in utf8 fails


From: David Maus
Subject: [Orgmode] [PATCH 16/16] Throw error if encoding character in utf8 fails
Date: Sun, 13 Feb 2011 13:01:18 +0100

* lisp/org.el (org-link-escape): Throw error if encoding character in
utf8 fails.
---
 lisp/org.el |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/lisp/org.el b/lisp/org.el
index 1415eb1..0eb3a2b 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -8598,8 +8598,10 @@ If optional argument MERGE is set, merge TABLE into
               (< char 32) (= char 37) (> char 126))
           (mapconcat (lambda (sequence-element)
                        (format "%%%.2X" sequence-element))
-                     (encode-coding-char char 'utf-8) "")
-          (char-to-string char))) text "")))
+                     (or (encode-coding-char char 'utf-8)
+                         (error "Unable to percent escape character: %s"
+                                (char-to-string char))) "")
+        (char-to-string char))) text "")))
 
 (defun org-link-unescape (str)
   "Unhex hexified unicode strings as returned from the JavaScript function
-- 
1.7.2.3




reply via email to

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