summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Dunn <dunni@gnu.org>2017-04-07 18:58:42 -0400
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2017-04-10 21:16:05 +0200
commita5275730765512526c54291d9b68b9f6ef453f89 (patch)
tree37fca2b8ed10e7adf24bad9193ed48bc982ff075
parent90f5c0d1a44be1f940e97635309a854b08d7d9ba (diff)
downloadorg-mode-a5275730765512526c54291d9b68b9f6ef453f89.tar.gz
org-mobile: Fix bug in mobile outline path handling
* org-mobile.el (org-mobile-get-outline-path-link): Use a `:' after file instead of a `/'.
-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 f6ef18f..12e6c84 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)
"/")