[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: non quoted arguements
- To: bright@ENH.NIST.GOV
- Subject: Re: non quoted arguements
- From: Michael Travers <mt@media.mit.edu>
- Date: Mon, 14 Dec 92 13:09:31 -0500
- Cc: info-mcl@cambridge.apple.com
- In-reply-to: Your message of "14 Dec 92 10:24:08 EST." <01GSAWG9D45U001D1T@ENH.NIST.GOV>
From: bright@ENH.NIST.GOV
Subject: non quoted arguements
How does one write a function/macro/anything to return the input, like the
old nlambdas and fexpers used to do?
If I understand you correctly, you have to use a macro. Here's one:
(defmacro track-it (sym)
`(progn (push ',sym *all-new-names*)
,sym))