X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fboot.lisp;h=10761131b13229d2bd612d5019ba55a8b6d694ee;hb=b2de12c4e1a6e77e7f3f22d056adcfeda79d085b;hp=59b97a0546d3a79f5f9a31142f742b9efae8aaea;hpb=dcfa70bbdc04e0571e94b99f1a2c8e1ae3237f03;p=jscl.git diff --git a/src/boot.lisp b/src/boot.lisp index 59b97a0..1076113 100644 --- a/src/boot.lisp +++ b/src/boot.lisp @@ -493,6 +493,8 @@ (integer 'integerp) (cons 'consp) (symbol 'symbolp) + (function 'functionp) + (float 'floatp) (array 'arrayp) (string 'stringp) (atom 'atom) @@ -507,7 +509,7 @@ `(let ((,g!x ,x)) (typecase ,g!x ,@clausules - (t (error "~X fell through etypeacase expression." ,g!x)))))) + (t (error "~X fell through etypecase expression." ,g!x)))))) (defun notany (fn seq) (not (some fn seq)))