Re: catching environment during manual (eval)

2019-01-18 Thread Alexander Burger
Hi Abel, > Hello everyone, can someone help me please to understand why (catch) around > manually-evaluated function args is not actually catching thrown tag? > --- > (de manual-eval X > (mapc eval X) ) > > (de throw-err () (throw 'my-err) ) > > # this does not evaluate > >

catching environment during manual (eval)

2019-01-18 Thread Abel Normand
Hello everyone, can someone help me please to understand why (catch) around manually-evaluated function args is not actually catching thrown tag? --- (de manual-eval X (mapc eval X) ) (de throw-err () (throw 'my-err) ) # this does not evaluate (catch 'my-err (manual-eval