From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jean-Marie Gaillourdet Subject: Tag Inheritance Date: Mon, 06 Oct 2008 14:04:08 +0200 Message-ID: <48E9FEB8.4040406@gaillourdet.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Kmoou-0004fy-Cp for emacs-orgmode@gnu.org; Mon, 06 Oct 2008 08:04:12 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Kmoos-0004f0-RQ for emacs-orgmode@gnu.org; Mon, 06 Oct 2008 08:04:11 -0400 Received: from [199.232.76.173] (port=38589 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Kmoos-0004ep-HQ for emacs-orgmode@gnu.org; Mon, 06 Oct 2008 08:04:10 -0400 Received: from itschert-vpn.net ([85.214.68.32]:4861 helo=hedwig.gaillourdet.net) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Kmooq-0002uD-QW for emacs-orgmode@gnu.org; Mon, 06 Oct 2008 08:04:09 -0400 Received: from goedel.informatik.uni-kl.de (localhost [127.0.0.1]) by hedwig.gaillourdet.net (Postfix) with ESMTP id 47720169DE3 for ; Mon, 6 Oct 2008 14:04:06 +0200 (CEST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi list, I am new to this list and somewhat new to org-mode. My .emacs includes (setq org-tag-alist '( (:startgroup) ("@phone" . ?1) ("@laptop" . ?2) ("@online" . ?3) ("@uni" . ?4) ("@kl" . ?5) ("@home" . ?6) ("@thinking" . ?7) ("@programming" . ?8) ("@writing" . ?9) ("@meeting" . ?0) (:endgroup) (:startgroup) ("APH" . ?a) ("AGMEETING" . ?g) (:endgroup) (:startgroup) ("idea" . ?i) ("question" . ?q) ("reference" . ?r) ("note" . ?o) (:endgroup) (:startgroup) ("work" . ?w) ("private" . ?p) (:endgroup) (:startgroup) ("refile" . ?f) (:endgroup) (:startgroup) ("project" . ?j) ("dissertation" .?s) (:endgroup) (:startgroup) ("review_daily" . ?m) ("review_weekly" . ?,) ("review_monthly" . ?.) (:endgroup) )) (setq org-use-tag-inheritance '("work" "private")) I thought this should have the effect, that work and private are inherited while all other tags are not. But C-c C-c on the second line of: * Test 1 :@laptop:work: *** Test 2 shows, that @laptop is inherited while work is not inherited. The documentation of org-use-tag-inheritance states > This may also be a list of tags that should be inherited, or a regexp > that matches tags that should be inherited. Therefore, I assumed that work should be inherited and @laptop. Is this a bug in the documentation or the implementation? How can I get the negated behaviour? Best regards, Jean