Re: [racket-users] Scribble and examples can't read racket-prefs.rktd

2020-08-16 Thread Deren Dohoda
Thank you Matthew, that did resolve the problem, though I was unable to ever determine why I could not display a plot from plot/pict. It seems that it was somehow related to (sandbox-output 'string) which could never be coerced display a bitmap, pict, etc. Ultimately I just used (make-base-eval

Re: [racket-users] Scribble and examples can't read racket-prefs.rktd

2020-08-16 Thread Matthew Flatt
Sandboxed filesystem and unsafety access is too strict for many purposes. For documentation, I recommend using a trusted sandbox by wrapping the sanebox creation with `call-with-trusted-sandbox-configuration`. Matthew At Sun, 16 Aug 2020 00:45:46 -0700 (PDT), Deren Dohoda wrote: > Hi Racketeers,