From 534fabb0df092703bad56af3267d74abcb850daf Mon Sep 17 00:00:00 2001 From: Olof-Joachim Frahm Date: Mon, 10 Jun 2013 21:23:06 +0200 Subject: [PATCH] Fix TYPECASE macro for T/ELSE case. --- src/boot.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boot.lisp b/src/boot.lisp index 16463e5..484429e 100644 --- a/src/boot.lisp +++ b/src/boot.lisp @@ -488,7 +488,7 @@ (cond ,@(mapcar (lambda (c) (if (eq (car c) t) - `((t ,@(rest c))) + `(t ,@(rest c)) `((,(ecase (car c) (integer 'integerp) (cons 'consp) -- 1.7.10.4