[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
compiled-function-p
>
(defun this-will-not-work nil nil)THIS-WILL-NOT-WORK
>
(compile 'this-will-not-work)End of Pass 1.
End of Pass 2.
OPTIMIZE levels: Safety=0 (No runtime error checking), Space=0, Speed=3
THIS-WILL-NOT-WORK
>
(compiled-function-p 'this-will-not-work)NIL
>
(typep 'this-will-not-work 'compiled-function)NIL
>
(compiled-function-p 'compiled-function-p)NIL
Somebody might also tell me what is going wrong with dribble - seems to have
a newline problem. Also read-line doesn't work at all - just returns an
empty string. This is on 4.3 Unix.
Thanks,
Eliot Handelman