From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Maus Subject: [PATCH 16/16] Throw error if encoding character in utf8 fails Date: Sun, 13 Feb 2011 13:01:18 +0100 Message-ID: <1297598478-9925-17-git-send-email-dmaus@ictsoc.de> References: <87d3mwvqwq.fsf@gnu.org> Return-path: Received: from [140.186.70.92] (port=57786 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Poaen-00047D-1n for emacs-orgmode@gnu.org; Sun, 13 Feb 2011 07:02:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Poael-0007LA-SU for emacs-orgmode@gnu.org; Sun, 13 Feb 2011 07:02:25 -0500 Received: from mail.app1.xlhost.de ([213.202.242.114]:48967 helo=mysql1.xlhost.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Poael-0007Kc-Jq for emacs-orgmode@gnu.org; Sun, 13 Feb 2011 07:02:23 -0500 In-Reply-To: <87d3mwvqwq.fsf@gnu.org> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org, bastien.guerry@wikimedia.fr Cc: David Maus * 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