From 8fb03a90cefc9ecae75f92890854f3623f2f5f83 Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Sat, 20 Jul 2013 17:42:06 +0200 Subject: LAMBDA: Don't spuriously error out on non-KEYWORDP keyword arguments. --- sb-eval2.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sb-eval2.lisp b/sb-eval2.lisp index 7df1f09..8216bdf 100644 --- a/sb-eval2.lisp +++ b/sb-eval2.lisp @@ -621,7 +621,7 @@ :format-arguments (list k))) (setq keys-checked-p t)) (go aux)) - (let* ((key (the keyword (pop my-keywords))) + (let* ((key (the symbol (pop my-keywords))) (val* (pop my-default-values*)) (x (getf rest key unbound))) (if (eq unbound x) -- cgit v1.2.3