From: Ronald
Subject: ((quote (list 1 2 3))) is wrong ?
Date: 
Message-ID: <emr1t1$3kq$1@news.yaako.com>
I think the result should be (1 2 3), but it can't be run.

From: ············@gmail.com
Subject: Re: ((quote (list 1 2 3))) is wrong ?
Date: 
Message-ID: <1167133742.338785.37280@42g2000cwt.googlegroups.com>
Ronald ¼g¹D¡G

> I think the result should be (1 2 3), but it can't be run.

You might try this instead
(eval (quote (list 1 2 3)))
From: Ronald
Subject: Re: ((quote (list 1 2 3))) is wrong ?
Date: 
Message-ID: <emr8vp$dbp$2@news.yaako.com>
············@gmail.com wrote:
> Ronald �g�D�G
> 
>> I think the result should be (1 2 3), but it can't be run.
> 
> You might try this instead
> (eval (quote (list 1 2 3)))
> 
I'm careless.
Thanks.
From: Pillsy
Subject: Re: ((quote (list 1 2 3))) is wrong ?
Date: 
Message-ID: <1167151265.887944.105360@79g2000cws.googlegroups.com>
Ronald wrote:
> I think the result should be (1 2 3), but it can't be run.

You want (quote (1 2 3)) without the outermost layer of parentheses.

Cheers, Pillsy