Re: [racket-users] [ANN] MrEd Designer update

2017-09-30 Thread Deren Dohoda
Thanks, Laurent. MrEd is extremely handy. Deren -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to racket-users+unsubscr...@googlegroups.com. For more options,

[racket-users] [ANN] MrEd Designer update

2017-09-30 Thread Laurent
A new version of MrEd Designer (package 'mred-designer') is available: https://pkgd.racket-lang.org/pkgn/package/mred-designer MrEd Designer is WYSIWYG program to create GUI applications for Racket. The changes are relatively minor in quantity, but I've made a number of small improvements to the

[racket-users] Safely allocating memory in places enabled world

2017-09-30 Thread Eric Dobson
I'm trying to write some racket code which interfaces with a foreign library and provides a safe interface. Some of the functions I'm calling allocate memory and need to have this explicitly freed by the caller. The 'allocator' binding from ffi/unsafe/alloc seems to solve this problem, but I'm