From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Dunn Subject: [PATCH] Fix bug in mobile outline path handling Date: Fri, 7 Apr 2017 18:58:42 -0400 Message-ID: <87efx3byx9.fsf@escafil> References: <87h920yz5z.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48492) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cwcyI-0002SK-Ed for emacs-orgmode@gnu.org; Fri, 07 Apr 2017 19:07:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cwcyH-00031q-LS for emacs-orgmode@gnu.org; Fri, 07 Apr 2017 19:07:14 -0400 In-reply-to: <87h920yz5z.fsf@nicolasgoaziou.fr> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Nicolas Goaziou Cc: emacs-orgmode@gnu.org * org-mobile.el (org-mobile-get-outline-path-link): Use a `:' after file instead of a `/' --- lisp/org-mobile.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-mobile.el b/lisp/org-mobile.el index f6ef18f10..12e6c84b3 100644 --- a/lisp/org-mobile.el +++ b/lisp/org-mobile.el @@ -648,7 +648,7 @@ The table of checksums is written to the file mobile-checksums." (org-with-point-at pom (concat "olp:" (org-mobile-escape-olp (file-name-nondirectory buffer-file-name)) - "/" + ":" (mapconcat 'org-mobile-escape-olp (org-get-outline-path) "/") -- 2.12.2