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.
This commit is contained in:
David Maus 2010-11-22 19:21:57 +01:00
parent d8c2cad3ef
commit 1350e57626
1 changed files with 2 additions and 2 deletions

View File

@ -8603,14 +8603,14 @@ according to FMT (default from `org-email-link-description-format')."
"]")) "]"))
(defconst org-link-escape-chars (defconst org-link-escape-chars
'(?\ ?\[ ?\] ?\; ?\= ?\+) '(?\ ?\[ ?\] ?\; ?\= ?\+ ?\%)
"List of characters that should be escaped in link. "List of characters that should be escaped in link.
This is the list that is used for internal purposes.") This is the list that is used for internal purposes.")
(defvar org-url-encoding-use-url-hexify nil) (defvar org-url-encoding-use-url-hexify nil)
(defconst org-link-escape-chars-browser (defconst org-link-escape-chars-browser
'(?\ ) '(?\ ?\%)
"List of escapes for characters that are problematic in links. "List of escapes for characters that are problematic in links.
This is the list that is used before handing over to the browser.") This is the list that is used before handing over to the browser.")