From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: harven Newsgroups: gmane.emacs.help Subject: Re: problem understanding font-lock-defaults structure Date: Thu, 09 Oct 2008 17:26:38 +0200 Organization: http://groups.google.com Message-ID: References: <13173afe-f51c-4c67-b738-1949f2b28b5f@f40g2000pri.googlegroups.com> <92306553-cbe8-4b0b-b628-b7d83134986d@d10g2000pra.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1223567311 26290 80.91.229.12 (9 Oct 2008 15:48:31 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 9 Oct 2008 15:48:31 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Oct 09 17:49:28 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Knxh2-0007oG-AU for geh-help-gnu-emacs@m.gmane.org; Thu, 09 Oct 2008 17:44:48 +0200 Original-Received: from localhost ([127.0.0.1]:59776 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Knxfy-0002Cq-GC for geh-help-gnu-emacs@m.gmane.org; Thu, 09 Oct 2008 11:43:42 -0400 Original-Path: news.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!feeder.erje.net!proxad.net!feeder1-2.proxad.net!cleanfeed1-a.proxad.net!nnrp2-2.free.fr!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (darwin) Cancel-Lock: sha1:aeibazSs05uV6ZRzLCkTXx/+6y8= Original-Lines: 20 Original-NNTP-Posting-Date: 09 Oct 2008 17:26:38 MEST Original-NNTP-Posting-Host: 82.240.200.149 Original-X-Trace: 1223565998 news-1.free.fr 22323 82.240.200.149:50375 Original-X-Complaints-To: abuse@proxad.net Original-Xref: news.stanford.edu gnu.emacs.help:163285 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:58628 Archived-At: Xah writes: > Lennart Borgman wrote: >> Could it be that the “quote” just takes one argument? > > Egads. This costed me few hours. > > Am filing a bug report on this... > > ... i always thought that the syntactical form > > '(...) > > is just equivalent to > > (quote ...) >From the elisp manual, ... Thus, the read syntax `'x' is an abbreviation for `(quote x)' ... So '(...) is equivalent to (quote (...))