Skip to content
Snippets Groups Projects
Commit bbbdc92b authored by Attila Lendvai's avatar Attila Lendvai
Browse files

fix: parse-ordinary-lambda-list was normalizing keyword args a bit even when it was not asked for

parent 5bd29f7c
No related branches found
No related tags found
No related merge requests found
......@@ -199,7 +199,7 @@ Signals a PROGRAM-ERROR is the lambda-list is malformed."
(check-variable elt "keyword parameter")
(setf elt (if normalize-keyword
(list (list (make-keyword elt) elt) nil nil)
(list elt)))))
elt))))
(push elt keys))
(&aux
(if (consp elt)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment