[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
FLET & declarations
- To: common-lisp@SAIL.STANFORD.EDU
- Subject: FLET & declarations
- From: GZ%OZ.AI.MIT.EDU@XX.LCS.MIT.EDU
- Date: Mon 17 Aug 87 03:57:47-EDT
Are 'pervasive' declarations in FLET supposed to apply to the function bodies?
E.g.
(flet ((foo () x)) ;Is this x special?
(declare (special x))
...)
(flet ((foo () (foo) ...)) ;Does this call to (foo) return a fixnum?
(declare (function foo () fixnum))
...)
(flet ((foo () (foo 17))) ;Is (foo 17) inline?
(declare (inline foo))
...)
-------