Re: [O] [PATCH] Fix bug in mobile outline path handling

2017-04-10 Thread Nicolas Goaziou
Hello,

Ian Dunn  writes:

> * org-mobile.el (org-mobile-get-outline-path-link): Use a `:' after
> file instead of a `/'

Applied. Thank you.

Regards,

-- 
Nicolas Goaziou



[O] [PATCH] Fix bug in mobile outline path handling

2017-04-07 Thread Ian Dunn

* 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