From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Drew Adams" Newsgroups: gmane.emacs.devel Subject: RE: Invalid face reference Date: Wed, 19 Nov 2008 14:40:56 -0800 Message-ID: <006a01c94a97$e2f7fd70$c2b22382@us.oracle.com> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1227134517 28796 80.91.229.12 (19 Nov 2008 22:41:57 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 19 Nov 2008 22:41:57 +0000 (UTC) To: "'Francesc Rocher'" , Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Nov 19 23:42:59 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1L2vl8-00050O-PC for ged-emacs-devel@m.gmane.org; Wed, 19 Nov 2008 23:42:55 +0100 Original-Received: from localhost ([127.0.0.1]:42917 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L2vk0-0002Vk-4Y for ged-emacs-devel@m.gmane.org; Wed, 19 Nov 2008 17:41:44 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L2vjL-00027A-Ny for emacs-devel@gnu.org; Wed, 19 Nov 2008 17:41:03 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L2vjK-00025r-Md for emacs-devel@gnu.org; Wed, 19 Nov 2008 17:41:03 -0500 Original-Received: from [199.232.76.173] (port=34466 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L2vjK-00025U-HM for emacs-devel@gnu.org; Wed, 19 Nov 2008 17:41:02 -0500 Original-Received: from rcsinet13.oracle.com ([148.87.113.125]:43056 helo=rgminet13.oracle.com) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1L2vjK-0002jZ-Iu for emacs-devel@gnu.org; Wed, 19 Nov 2008 17:41:02 -0500 Original-Received: from rgminet15.oracle.com (rcsinet15.oracle.com [148.87.113.117]) by rgminet13.oracle.com (Switch-3.3.1/Switch-3.3.1) with ESMTP id mAJMfFJb008546 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 19 Nov 2008 22:41:17 GMT Original-Received: from acsmt706.oracle.com (acsmt706.oracle.com [141.146.40.84]) by rgminet15.oracle.com (Switch-3.3.1/Switch-3.3.1) with ESMTP id mAJMf0vd029380; Wed, 19 Nov 2008 22:41:02 GMT Original-Received: from dradamslap1 (/130.35.178.194) by default (Oracle Beehive Gateway v4.0) with ESMTP ; Wed, 19 Nov 2008 22:40:54 +0000 X-Mailer: Microsoft Office Outlook 11 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3350 In-Reply-To: Thread-Index: AclKlqMtuUMLmrVSQFqLFH0hD2fpmAAALvTg X-Source-IP: acsmt706.oracle.com [141.146.40.84] X-Auth-Type: Internal IP X-CT-RefId: str=0001.0A090202.492495F9.0176:SCFSTAT928724,ss=1,fgs=0 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 1) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:105833 Archived-At: > In '*Messages*' buffer I have: > Invalid face reference: quote [11 times] > What causes it? How could I debug this error? [Please use plain text, not HTML, for this mailing list.] Sounds like some code you evaluate (e.g. load via .emacs) is trying to treat `quote' as a face. Look for some code involving faces that might have an extra single-quote character: 'my-face or '(my-face...) instead of just my-face or (my-face...).