summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Dokos <ndokos@gmail.com>2013-12-14 15:17:18 -0500
committerBastien Guerry <bzg@altern.org>2014-01-13 00:27:50 +0100
commita49740ec838c9ea53560393091d8e884f9d3490f (patch)
tree044f7cad6d6a35900f16bd3be27938367d85c3c5
parentdac6d880b7233fb345f3bbeebc79b1729daf9682 (diff)
downloadorg-mode-a49740ec838c9ea53560393091d8e884f9d3490f.tar.gz
Delete :grouptags from tags list when creating org-mobile index file
* org-mobile.el (org-mobile-create-index-file): delete :grouptags entries from tags list when creating the org-mobile index file. Reported by Dror Atariah - see http://thread.gmane.org/gmane.emacs.orgmode/79803 and (the continuation of the above thread) http://thread.gmane.org/gmane.emacs.orgmode/79856
-rw-r--r--lisp/org-mobile.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/org-mobile.el b/lisp/org-mobile.el
index f5a4ae9..f59d1c4 100644
--- a/lisp/org-mobile.el
+++ b/lisp/org-mobile.el
@@ -460,6 +460,7 @@ agenda view showing the flagged items."
((stringp x) x)
((eq (car x) :startgroup) "{")
((eq (car x) :endgroup) "}")
+ ((eq (car x) :grouptags) nil)
((eq (car x) :newline) nil)
((listp x) (car x))))
def-tags))