help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Basic Emacs Lisp question


From: Johan Bockgård
Subject: Re: Basic Emacs Lisp question
Date: Thu, 01 May 2008 11:25:06 +0200
User-agent: Gnus/5.110009 (No Gnus v0.9) Emacs/23.0.60 (gnu/linux)

Giorgos Keramidas <keramida@ceid.upatras.gr> writes:

> I am only beginning to grasp Lisp myself too, so I wasn't aware that
> '-quoting produces the list in the reader :)

It doesn't.  The parentheses produce the list in the reader.  The
`quote' special form returns its argument without evaluating it.

    (read "'(0 1 2)")  =>  (quote (0 1 2))
    (quote (0 1 2))    =>  (0 1 2)    ; Not a copy

-- 
Johan Bockgård


reply via email to

[Prev in Thread] Current Thread [Next in Thread]