From: Olof-Joachim Frahm Date: Tue, 21 May 2013 19:04:53 +0000 (+0200) Subject: Make FUNCTION and FLOAT available in TYPECASE. X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=d798bcced437e76b7add75ef043c3bd517f37590;p=jscl.git Make FUNCTION and FLOAT available in TYPECASE. --- diff --git a/src/boot.lisp b/src/boot.lisp index 4335d4c..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)