"... while trying to print the returned environment." - DON'T DO THAT.
See http://www.lispworks.com/documentation/HyperSpec/Issues/iss229_w.htm which discusses whether environments have indefinite or dynamic extent.
Our environments have dynamic extent, so of course you can't print them after return from the form that tried to capture one indefinitely.
"... while trying to print the returned environment." - DON'T DO THAT.
See http:// www.lispworks. com/documentati on/HyperSpec/ Issues/ iss229_ w.htm which discusses whether environments have indefinite or dynamic extent.
Our environments have dynamic extent, so of course you can't print them after return from the form that tried to capture one indefinitely.