From bbd12561742cf83bd8fe0fb93b4e3f1efe436d0a Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Wed, 28 Mar 1990 13:37:20 +0000 Subject: [PATCH] Fixed paren error in CHECK-ARG-TYPE. --- compiler/ctype.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/ctype.lisp b/compiler/ctype.lisp index c5e9bdfb5..4ea4ed805 100644 --- a/compiler/ctype.lisp +++ b/compiler/ctype.lisp @@ -180,7 +180,7 @@ (type-specifier (continuation-asserted-type cont))) nil) - (t t)))) + (t t))))) ((not (constant-continuation-p cont)) (note-slime "The ~:R argument is not a constant." n) nil) @@ -198,7 +198,7 @@ (note-lossage "The ~:R argument is not a constant ~S:~% ~S" n (type-specifier type) val) nil) - (t t)))))))) + (t t))))))) ;;; Check-Fixed-And-Rest -- Internal -- GitLab