From mboxrd@z Thu Jan 1 00:00:00 1970 From: Maurice Subject: Re: tag groups Date: Sat, 06 Jul 2013 11:00:14 +0200 Message-ID: <871u7c3vxd.fsf@lonovo.maison.ici> References: <87obbz5ct7.fsf@lonovo.maison.ici> <87a9m3pwo5.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44045) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UvOLr-0006De-Vy for emacs-orgmode@gnu.org; Sat, 06 Jul 2013 05:00:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UvOLp-0004Od-AL for emacs-orgmode@gnu.org; Sat, 06 Jul 2013 05:00:19 -0400 Received: from smtp5-g21.free.fr ([2a01:e0c:1:1599::14]:50342) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UvOLo-0004Ny-Oe for emacs-orgmode@gnu.org; Sat, 06 Jul 2013 05:00:17 -0400 Received: from lonovo.maison.ici (unknown [82.255.149.62]) by smtp5-g21.free.fr (Postfix) with ESMTP id 10902D4805A for ; Sat, 6 Jul 2013 11:00:09 +0200 (CEST) In-Reply-To: <87a9m3pwo5.fsf@bzg.ath.cx> (Bastien's message of "Wed, 03 Jul 2013 16:04:10 +0200") 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi, Bastien, Bastien =C3=A9crivit : >> value for : org-tag-alist-for-agenda >> >> ((:startgroup) >> ("pr=C3=AAt=C3=A9" . 112) >> ("emprunt=C3=A9" . 101) >> (:endgroup) >> ("note" . 110) >> ("noexport" . 120) >> ("lien" . 98) >> ("crypt" . 99) >> ("projet" . 112) >> ("suspendu" . 122) >> (:startgroup "lieu") >> ("@dehors" . 100) >> (:grouptags) >> ("@lieu1" . 97) >> ("@lieu2" . 118)) > > You're missing an :endgroup here -- that's weird. No, this value was the result of the command =C2=AB describe-variable org-t= ag-alist-for-agenda =C2=BB > Can you pull from the git repo and report if you still have the > issue you reported? If so, please add an example I can quickly > use to reproduce the problem. The problem is still there in the last git repo : release_8.0.5-314-g0bab94 My minimal emacs : --8<---------------cut here---------------start------------->8--- (add-to-list 'load-path (expand-file-name "~/.emacs.d/vendor/org-mode/lisp"= )) (add-to-list 'load-path (expand-file-name "~/.emacs.d/vendor/org-mode/contr= ib/lisp")) (add-to-list 'auto-mode-alist '("\\.\\(org\\|org_archive\\|txt\\)$" . org-m= ode)) (setq org-agenda-files '("~/org/temp.org")) (require 'org) (global-set-key "\C-cl" 'org-store-link) (global-set-key "\C-ca" 'org-agenda) (global-set-key "\C-cb" 'org-iswitchb) (setq org-tag-alist (quote (("projet" . 112) ("suspendu" . 122) (:startgroup "lieu") ("@dehors" . 100) (:grouptags) ("@lieu1" . 97) ("@lieu2" . 118) (:endgroup "lieu")))) --8<---------------cut here---------------end--------------->8--- My temp.org : --8<---------------cut here---------------start------------->8--- # -*- mode: org ; coding: utf-8 -*- * Un :@dehors: test1 * Deux :@lieu1: test2 * Trois :@lieu2: test3 * Quatre :@lieu1: test4 --8<---------------cut here---------------end--------------->8--- Maybe, I forget something. Anyway thanks for your investigation. Maurice