From mboxrd@z Thu Jan 1 00:00:00 1970 From: Suvayu Ali Subject: Re: Tags included in subtree export title despite tags:nil in header Date: Sun, 30 Oct 2011 08:57:22 +0100 Message-ID: <20111030085722.3a4d81d5@kuru.homelinux.net> References: <83vcra2493.fsf@yahoo.it> <20111027134220.510ec38b@kuru.homelinux.net> <20111027140516.2f6d5508@kuru.homelinux.net> <87fwic6j37.fsf@gnu.org> <20111029164832.1c83474b@kuru.homelinux.net> <871utvu66a.fsf@gnu.org> <20111030011058.2e53a791@kuru.homelinux.net> <10900.1319936847@alphaville.dokosmarshall.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:39840) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RKQGm-0004JM-Cj for emacs-orgmode@gnu.org; Sun, 30 Oct 2011 03:57:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RKQGl-0002RX-2G for emacs-orgmode@gnu.org; Sun, 30 Oct 2011 03:57:28 -0400 Received: from mail-fx0-f41.google.com ([209.85.161.41]:37181) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RKQGk-0002RP-P1 for emacs-orgmode@gnu.org; Sun, 30 Oct 2011 03:57:26 -0400 Received: by faat2 with SMTP id t2so2676175faa.0 for ; Sun, 30 Oct 2011 00:57:25 -0700 (PDT) In-Reply-To: <10900.1319936847@alphaville.dokosmarshall.org> 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: nicholas.dokos@hp.com Cc: Bastien , org-mode mailing list Hi Nick, On Sat, 29 Oct 2011 21:07:27 -0400 Nick Dokos wrote: > Suvayu Ali wrote: > > > In the attached patch, I use the variable org-export-with-tags to > > check whether tags should be included or skipped in the export > > title. However irrespective of the export options I get the value > > not-in-toc. As a result, the tags are not included even if tags:t > > is set. > > > > Is my use of org-export-with-tags incorrect? Is there something > > else I need to do before I can use it? > > > > Try changing the test to just > > + (setq title (if org-export-with-tags > + (format "%s\t%s" (match-string 3) > (match-string 4)) > + (match-string 3))) > > This checks whether org-export-with-tags is non-nil, rather than > checking that it is exactly t. In general, checking for nil or > non-nil is probably a better way to go, unless there are specific > reasons to be more specific. > That was my original attempt. But I went with the eq test since I thought tags:not-in-toc would also imply the user doesn't want the tags to be included in the export title. That said, the problem I am facing is org-export-with-tags evaluates to not-in-toc irrespective of what is set by the tags: option (see for example the test file earlier in the thread). So effectively the test is not checking what it is supposed to check. So I was wondering whether I missed something I should be doing. > Nick -- Suvayu Open source is the future. It sets us free.