summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Maus <dmaus@ictsoc.de>2010-11-21 12:06:42 +0100
committerDavid Maus <dmaus@ictsoc.de>2011-02-17 19:26:48 +0100
commitd8c2cad3ef03019b0096abc3a3b37895510d867f (patch)
tree0f087e9e49e154ec36b35dac03b9e0c977823d6b
parent98bf28c52fb83764a2bc91de12ca6929fdb12f3d (diff)
downloadorg-mode-d8c2cad3ef03019b0096abc3a3b37895510d867f.tar.gz
Use new percent escape character table format
* org-mobile.el (org-mobile-escape-olp): Use new percent escape character table format.
-rw-r--r--lisp/org-mobile.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-mobile.el b/lisp/org-mobile.el
index 3b9f45d..c3d181d 100644
--- a/lisp/org-mobile.el
+++ b/lisp/org-mobile.el
@@ -660,7 +660,7 @@ The table of checksums is written to the file mobile-checksums."
(org-mobile-escape-olp (nth 4 (org-heading-components))))))
(defun org-mobile-escape-olp (s)
- (let ((table '((?: . "%3a") (?\[ . "%5b") (?\] . "%5d") (?/ . "%2f"))))
+ (let ((table '(?: ?/)))
(org-link-escape s table)))
;;;###autoload