From 7b6869cf7d26b672458c1c73c5732870d815b748 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Fri, 1 Feb 1991 12:36:48 +0000 Subject: [PATCH] Fixed paren error that was breaking keyword arg parsing. --- compiler/locall.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/locall.lisp b/compiler/locall.lisp index cb721700c..427e39330 100644 --- a/compiler/locall.lisp +++ b/compiler/locall.lisp @@ -494,8 +494,8 @@ (let ((info (lambda-var-arg-info var))) (when (eq (arg-info-keyword info) name) (ignores dummy) - (supplied (cons var val))) - (return)))))) + (supplied (cons var val)) + (return))))))) (when (and loser (not (optional-dispatch-allowp fun))) (compiler-warning "Function called with unknown argument keyword ~S." -- GitLab