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
Branches
Tags
No related merge requests found
......@@ -225,7 +225,7 @@
(let* ((eval-fun (get-eval-function x))
(lambda (eval-function-lambda eval-fun)))
(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
(eval-function-definition eval-fun))))
(values (c::functional-inline-expansion fun)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment