Skip to content
Snippets Groups Projects
Commit c7512015 authored by ram's avatar ram
Browse files

Changed INTERPRETED-FUNCTION-LAMBDA-EXPRESSION to not return the lambda as the

name when there is no name.  Callers can do this when that's what they want.
parent 2fb5d634
No related branches found
No related tags found
No related merge requests found
...@@ -225,7 +225,7 @@ ...@@ -225,7 +225,7 @@
(let* ((eval-fun (get-eval-function x)) (let* ((eval-fun (get-eval-function x))
(lambda (eval-function-lambda eval-fun))) (lambda (eval-function-lambda eval-fun)))
(if lambda (if lambda
(values lambda nil (or (eval-function-name eval-fun) lambda)) (values lambda nil (eval-function-name eval-fun))
(let ((fun (c::functional-entry-function (let ((fun (c::functional-entry-function
(eval-function-definition eval-fun)))) (eval-function-definition eval-fun))))
(values (c::functional-inline-expansion fun) (values (c::functional-inline-expansion fun)
......
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