[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
declarations in body of LABELS
- To: Steele@TL-20B.ARPA
- Subject: declarations in body of LABELS
- From: "David A. Moon" <Moon@SCRC-QUABBIN.ARPA>
- Date: Sat, 18 Aug 84 14:23 EDT
- Cc: Common-Lisp@SU-AI.ARPA
Pages 113 and 154 disagree about whether a declaration may appear in the
body of a LABELS (or FLET or MACROLET). These forms do not bind variables,
but I assume that page 154 is correct. Example:
(LABELS ((FOO (X Y) (IF X (LIST X Y) Y)))
(DECLARE (INLINE FOO))
(COND ((... (FOO 1 2) ...))))