From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Annoying face customizations Date: Fri, 14 Aug 2009 17:26:15 +0200 Message-ID: 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 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mbyfi-0000rv-1q for emacs-orgmode@gnu.org; Fri, 14 Aug 2009 11:26:26 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mbyfd-0000ma-84 for emacs-orgmode@gnu.org; Fri, 14 Aug 2009 11:26:25 -0400 Received: from [199.232.76.173] (port=45068 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mbyfd-0000mX-64 for emacs-orgmode@gnu.org; Fri, 14 Aug 2009 11:26:21 -0400 Received: from mail-ew0-f207.google.com ([209.85.219.207]:57004) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mbyfc-0004ML-LJ for emacs-orgmode@gnu.org; Fri, 14 Aug 2009 11:26:20 -0400 Received: by ewy3 with SMTP id 3so2019689ewy.42 for ; Fri, 14 Aug 2009 08:26:19 -0700 (PDT) In-Reply-To: <87ljlm8ni4.fsf@gollum.intra.norang.ca> 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: Bernt Hansen Cc: Carsten Dominik , emacs-orgmode@gnu.org 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: 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 - Carsten On Aug 14, 2009, at 4:43 PM, Bernt Hansen wrote: > Carsten Dominik writes: > >> On Aug 14, 2009, at 4:32 PM, Bernt Hansen wrote: >> >>> Only org-tag-alist and org-agenda-custom-commands. >> >> Do you see face information in the agenda custom commands? >> This is strange, because they are not made by parsing some buffer. >> Maybe you cut/paste some text for the custom commands from some >> fontified buffer? > > Hmmm maybe. I didn't do that intentionally. :) > I see face information in the custom commands. > > C-h v org-agenda-custom-commands shows (on my workstation) > > ,---- > | Value: > | (("s" "Started Tasks" todo > | #("STARTED" 0 7 > | (face org-warning)) > | ((org-agenda-todo-ignore-with-date nil))) > | ("w" "Tasks waiting on something" tags > | #("WAITING/!" 0 9 > | (face org-warning)) > | ((org-use-tag-inheritance nil))) > | ("r" "Refile New Notes and Tasks" tags > | #("LEVEL=1+REFILE" 0 14 > | (face org-warning)) > | ((org-agenda-todo-ignore-with-date nil))) > | ("N" "Notes" tags > | #("NOTE" 0 4 > | (face org-warning)) > | nil) > | ("n" "Next" tags > | #("NEXT-WAITING/!" 0 14 > | (face org-warning)) > | nil)) > `---- > > After clicking the _Customize_ button the values ('WAITING/!', 'NOTE', > etc) are all RED. > > This only happens on my workstation. I just don't know how to get > this > to stop - it's been like this for a _long_ time (over a year?) > > -Bernt