Subject: Re: Yet another 'when to use macros' question....
From: rpw3@rpw3.org (Rob Warnock)
Date: Mon, 06 Feb 2006 04:10:30 -0600
Newsgroups: comp.lang.lisp
Message-ID: <94-dnSJySuILvXreRVn-ig@speakeasy.net>
Kaz Kylheku <kkylheku@gmail.com> wrote:
+---------------
| E.g, in:
|   (macrolet (x (cdr y))
|     (setq x 42))
| The (SETQ X 42) does the same job as (SETF (CDR Y) 42).
+---------------

Typo? ITYM this, yes?

   (symbol-macrolet ((x (cdr y)))
     (setq x 42))


-Rob

-----
Rob Warnock			<rpw3@rpw3.org>
627 26th Avenue			<URL:http://rpw3.org/>
San Mateo, CA 94403		(650)572-2607