From mboxrd@z Thu Jan 1 00:00:00 1970 From: Renato Subject: Re: Bug: Priority #B in Agenda causes invalid face reference [8.2.1 (8.2.1-15-ge5cecc-elpa @ /Users/Paul/.emacs.d/elpa/org-20131021/)] Date: Thu, 23 Apr 2015 18:21:45 -0300 Message-ID: <87fv7qv8uu.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39226) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YlOY6-0000ga-NI for emacs-orgmode@gnu.org; Thu, 23 Apr 2015 17:20:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YlOY1-0005tT-0O for emacs-orgmode@gnu.org; Thu, 23 Apr 2015 17:20:42 -0400 Received: from mail-qg0-x22e.google.com ([2607:f8b0:400d:c04::22e]:34158) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YlOY0-0005tP-RL for emacs-orgmode@gnu.org; Thu, 23 Apr 2015 17:20:36 -0400 Received: by qgfi89 with SMTP id i89so14468375qgf.1 for ; Thu, 23 Apr 2015 14:20:36 -0700 (PDT) Received: from note (179-96-150-135.life.com.br. [179.96.150.135]) by mx.google.com with ESMTPSA id f8sm6767363qka.9.2015.04.23.14.20.34 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 23 Apr 2015 14:20:35 -0700 (PDT) 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 I'm using release_8.2.10 and experienced the same problem. The problem seems to be the function org-agenda-fontify-priorities which calls: (org-face-from-face-or-color 'priority nil (cdr (assoc p org-priority-faces))) which expects a face to inherit from. When org-priority-faces is nil or color or even does not specify the priority(e.g. "B") it inherits from nil and causes the message. Setting it to something like (quote ((65 . org-level-1) (66 . org-level-2) (67 . org-level-3) (68 . org-level-4)))) is a workaround to the problem. Renato