From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Maus Subject: [PATCH 10/16] Use new percent escape character table format Date: Sun, 13 Feb 2011 13:01:12 +0100 Message-ID: <1297598478-9925-11-git-send-email-dmaus@ictsoc.de> References: <87d3mwvqwq.fsf@gnu.org> Return-path: Received: from [140.186.70.92] (port=57359 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PoaeX-0003wS-Cd for emacs-orgmode@gnu.org; Sun, 13 Feb 2011 07:02:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PoaeW-00079y-ES for emacs-orgmode@gnu.org; Sun, 13 Feb 2011 07:02:09 -0500 Received: from mail.app1.xlhost.de ([213.202.242.114]:48936 helo=mysql1.xlhost.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PoaeW-00079g-7u for emacs-orgmode@gnu.org; Sun, 13 Feb 2011 07:02:08 -0500 In-Reply-To: <87d3mwvqwq.fsf@gnu.org> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org, bastien.guerry@wikimedia.fr Cc: David Maus * org-mobile.el (org-mobile-escape-olp): Use new percent escape character table format. --- lisp/org-mobile.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lisp/org-mobile.el b/lisp/org-mobile.el index 6616876..fe0a287 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 -- 1.7.2.3