Use new percent escape character table format

* org-mobile.el (org-mobile-escape-olp): Use new percent escape
character table format.
This commit is contained in:
David Maus 2010-11-21 12:06:42 +01:00
parent 98bf28c52f
commit d8c2cad3ef
1 changed files with 1 additions and 1 deletions

View File

@ -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