From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Maus Subject: [PATCH 11/16] Add percent sign to list of escape chars Date: Sun, 13 Feb 2011 13:01:13 +0100 Message-ID: <1297598478-9925-12-git-send-email-dmaus@ictsoc.de> References: <87d3mwvqwq.fsf@gnu.org> Return-path: Received: from [140.186.70.92] (port=57446 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Poaea-0003yE-7j for emacs-orgmode@gnu.org; Sun, 13 Feb 2011 07:02:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PoaeZ-0007Bl-8A for emacs-orgmode@gnu.org; Sun, 13 Feb 2011 07:02:12 -0500 Received: from mail.app1.xlhost.de ([213.202.242.114]:48941 helo=mysql1.xlhost.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PoaeY-0007BW-Vl for emacs-orgmode@gnu.org; Sun, 13 Feb 2011 07:02:11 -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 * org.el (org-link-escape-chars-browser, org-link-escape-chars): Add percent sign to list of escape chars. --- lisp/org.el | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 602462d..370109b 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -8543,14 +8543,14 @@ according to FMT (default from `org-email-link-description-format')." "]")) (defconst org-link-escape-chars - '(?\ ?\[ ?\] ?\; ?\= ?\+) + '(?\ ?\[ ?\] ?\; ?\= ?\+ ?\%) "List of characters that should be escaped in link. This is the list that is used for internal purposes.") (defvar org-url-encoding-use-url-hexify nil) (defconst org-link-escape-chars-browser - '(?\ ) + '(?\ ?\%) "List of escapes for characters that are problematic in links. This is the list that is used before handing over to the browser.") -- 1.7.2.3