Hi Eric, Eric Schulte <[email protected]> writes:
> I'm surprised that elisp doesn't provide any mechanism for local
> anonymous functions.
(let ((my-local-func (lambda (a) (message a))))
(funcall my-local-func "Hello!"))
is fine.
It's just for recursive local function -- letrec provides it now,
but apparently cl-labels was needed for that before.
--
Bastien
