[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Orgmode] [PATCH 11/16] Add percent sign to list of escape chars
From: |
David Maus |
Subject: |
[Orgmode] [PATCH 11/16] Add percent sign to list of escape chars |
Date: |
Sun, 13 Feb 2011 13:01:13 +0100 |
* 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
- [Orgmode] [PATCH 01/16] Decode single byte sequence if decoding unicode failed., (continued)
- [Orgmode] [PATCH 01/16] Decode single byte sequence if decoding unicode failed., David Maus, 2011/02/13
- [Orgmode] [PATCH 02/16] New unicode aware percent encoding algorithm, David Maus, 2011/02/13
- [Orgmode] [PATCH 03/16] New format of percent escape table, David Maus, 2011/02/13
- [Orgmode] [PATCH 04/16] Fixup doc string, David Maus, 2011/02/13
- [Orgmode] [PATCH 05/16] New optional argument: Merge user table with default table, David Maus, 2011/02/13
- [Orgmode] [PATCH 06/16] Inline function to properly decode utf8 characters in Emacs 22, David Maus, 2011/02/13
- [Orgmode] [PATCH 08/16] Declare obsolete & alias to respective org-link-unescape-* functions, David Maus, 2011/02/13
- [Orgmode] [PATCH 09/16] Remove obsolete argument in call to org-link-unescape, David Maus, 2011/02/13
- [Orgmode] [PATCH 07/16] Unescape functions moved and renamed from org-protocol.el, David Maus, 2011/02/13
- [Orgmode] [PATCH 10/16] Use new percent escape character table format, David Maus, 2011/02/13
- [Orgmode] [PATCH 11/16] Add percent sign to list of escape chars,
David Maus <=
- [Orgmode] [PATCH 12/16] Rename lambda argument, David Maus, 2011/02/13
- [Orgmode] [PATCH 14/16] Always percent escape the percent sign, David Maus, 2011/02/13
- [Orgmode] [PATCH 13/16] Refactor unescaping functions, David Maus, 2011/02/13
- [Orgmode] [PATCH 15/16] Use `org-link-unescape' instead of obsolete unhex string function, David Maus, 2011/02/13
- [Orgmode] [PATCH 16/16] Throw error if encoding character in utf8 fails, David Maus, 2011/02/13