[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
IGNORE, warnings, and &stuff
- To: Soley@MC.LCS.MIT.EDU
- Subject: IGNORE, warnings, and &stuff
- From: "Scott E. Fahlman" <Fahlman@C.CS.CMU.EDU>
- Date: Mon, 21 Apr 1986 14:51:00 -0000
- Cc: common-lisp@SU-AI.ARPA
- In-reply-to: Msg of 21 Apr 1986 10:23-EST from Soley at MIT-MC.ARPA
- Sender: FAHLMAN@C.CS.CMU.EDU
But how about if
(lambda (x &ignore y &ignore z) ...)
was instead the same as
(lambda (x y z)
(declare (ignore y z))
...)
I don't see this as any big improvement in convenience over the declare
form we have now.
-- Scott