bug#25212: REPL aborts when a stack overflow is triggered twice

2017-01-09 Thread Andy Wingo
On Thu 15 Dec 2016 20:34, Steff writes: > When a Stack Overflow occured the new prompt of the REPL becomes > fragile an sometimes crashes on invalid inputs. > A reliant way to make the REPL abort, is by triggering a stack > overflow twice. > > Affected Version: 2.0.13 Yeah this one is gnarly. W

bug#25212: REPL aborts when a stack overflow is triggered twice

2016-12-15 Thread Steff
When a Stack Overflow occured the new prompt of the REPL becomes fragile an sometimes crashes on invalid inputs. A reliant way to make the REPL abort, is by triggering a stack overflow twice. Affected Version: 2.0.13 Way to reproduce: scheme@(guile-user)> (define x (lambda () (x) (x))) ;;;