* 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


_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to