From 1350e576263db0d5be70572fbf0d8a4f9ed97a24 Mon Sep 17 00:00:00 2001 From: David Maus Date: Mon, 22 Nov 2010 19:21:57 +0100 Subject: [PATCH] Add percent sign to list of escape chars * org.el (org-link-escape-chars-browser, org-link-escape-chars): Add percent sign to list of escape chars. --- lisp/org.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 8151bfc9f..ac99f6cab 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -8603,14 +8603,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.") -- 2.11.4.GIT