[Chicken-users] Emacs' dumb-jump now supports Scheme

2017-12-13 Thread Dan Leslie
Emacs users can now avail themselves of Scheme support in the `dumb-jump` package; the support has just been merged into Git. What's dumb-jump? It's jump-to-definition using Rip-Grep, the Silver Searcher, Grep and Git Grep as backends; the implementation is small, zippy, and usually effective. I

Re: [Chicken-users] Memory allocation and limits in chicken scheme programs

2017-12-13 Thread Kon Lovett
> On Dec 13, 2017, at 4:16 PM, Matt Welland wrote: > > > > On Wed, Dec 13, 2017 at 12:41 PM, Peter Bex > wrote: > On Wed, Dec 13, 2017 at 11:13:54AM -0700, Matt Welland wrote: > > I'm using Chicken 4.10.0 and with

Re: [Chicken-users] Memory allocation and limits in chicken scheme programs

2017-12-13 Thread Matt Welland
On Wed, Dec 13, 2017 at 12:41 PM, Peter Bex wrote: > On Wed, Dec 13, 2017 at 11:13:54AM -0700, Matt Welland wrote: > > I'm using Chicken 4.10.0 and with the below script chicken rapidly > > allocates memory then seems to get stuck: > > Hi Matt, > > Try to update to CHICKEN

Re: [Chicken-users] Memory allocation and limits in chicken scheme programs

2017-12-13 Thread Peter Bex
On Wed, Dec 13, 2017 at 11:13:54AM -0700, Matt Welland wrote: > I'm using Chicken 4.10.0 and with the below script chicken rapidly > allocates memory then seems to get stuck: Hi Matt, Try to update to CHICKEN 4.13.0 first (standard advice, we usually fix lots of issues in new versions). I

[Chicken-users] Memory allocation and limits in chicken scheme programs

2017-12-13 Thread Matt Welland
I'm using Chicken 4.10.0 and with the below script chicken rapidly allocates memory then seems to get stuck: =script= (define start-time (current-milliseconds)) (define max-n 200) (let loop ((n 0) (stuff '())) (let ((bigvec (make-vector 100 0))) (print n "