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
This commit is contained in:
Nick Dokos 2013-12-14 15:17:18 -05:00 committed by Bastien Guerry
parent dac6d880b7
commit a49740ec83
1 changed files with 1 additions and 0 deletions

View File

@ -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))