From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: Annoying face customizations Date: Fri, 14 Aug 2009 11:40:00 -0400 Message-ID: <87pray76b3.fsf@gollum.intra.norang.ca> References: <878whnsujo.fsf@gollum.intra.norang.ca> <87tz0a8nzu.fsf@gollum.intra.norang.ca> <5365E988-785A-445D-850F-86C666A3DBD2@gmail.com> <87ljlm8ni4.fsf@gollum.intra.norang.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mbysz-0000kH-Ot for emacs-orgmode@gnu.org; Fri, 14 Aug 2009 11:40:09 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mbysv-0000il-H5 for emacs-orgmode@gnu.org; Fri, 14 Aug 2009 11:40:08 -0400 Received: from [199.232.76.173] (port=33410 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mbysv-0000ih-8u for emacs-orgmode@gnu.org; Fri, 14 Aug 2009 11:40:05 -0400 Received: from mho-02-ewr.mailhop.org ([204.13.248.72]:49256) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Mbysu-0007dh-W0 for emacs-orgmode@gnu.org; Fri, 14 Aug 2009 11:40:05 -0400 In-Reply-To: (Carsten Dominik's message of "Fri\, 14 Aug 2009 17\:26\:15 +0200") 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: Carsten Dominik Cc: Carsten Dominik , emacs-orgmode@gnu.org Carsten Dominik writes: > On Aug 14, 2009, at 5:19 PM, Bernt Hansen wrote: > >> I think maybe I've fixed this by deleting the entries in the customize >> interface and recreating them from scratch with identical detail. > > > > Hi Bernt, > > No, this will com back when you use the agenda or change > any tags with the fast tag interface. > > What comes blow is a simpler technique to get rid of the properties: > > I have now removed one reason why these things might get text > properties. Please pull, then do this: Okay I'll try the new version. I use fast tags interface all the time. Did you push any new commits? The most recent one I see is Bastien's 7af16c7 (org.texi: Added an index entry for the sorting of subtrees., 2009-08-14) > > 1. Call your agenda C-c a a. > 2. Evaluate this form > > > (setq org-tag-alist > (mapcar (lambda (x) > (if (stringp (car x)) > (set-text-properties 0 (length (car x)) nil (car x))) > x) > org-tag-alist)) > > 3. Customize both variables, and press Se and Save for both of them. > > 4. Let me know if the problem re-appears (it will if you ever use > an oder version of Org, either calling the agenda or setting tags. > > HTH