Re: Eval with local environment?

2017-08-19 Thread David Kastrup
is (use-modules (ice-9 local-eval)) (let ((foo 12)) (local-eval 'foo (the-environment))) -- David Kastrup

Eval with local environment?

2017-08-19 Thread Christopher Howard
I was just curious: Is there something you can pass to eval procedure that using the local environment? e.g., (let ((foo 12)) (eval 'foo (this-environment))) to get it to return 12. Of course, you could just (let ((foo 12)) foo) But suppose you were working with the identifier 'foo instead for