bug#20093: Fw: bug#20093: master: setting merge-generics duplicate-binding-handler @ expand time raises an error

2016-07-24 Thread David Pirotte
Hi again :) > ... > this works fine: I realized just after I sent that the compile-me script was not the latest version: no big deal, just this displays exactly what I pasted in the previous mail Here it is: ;; compile-me script starts here #! /bin/sh # -*- mode: scheme; coding: utf-8 -*- exec

bug#20093: Fw: bug#20093: master: setting merge-generics duplicate-binding-handler @ expand time raises an error

2016-07-24 Thread David Pirotte
Hi Andy, > > This is a big problem for me, so I partially locally reverted that part of > > the patch, plus, I patch guild so it does this before anything else: > > (eval-when (expand load eval) > > (use-modules (oop goops)) > > (default-duplicate-binding-handler > > '(mer

bug#24061: While loop can't call continue in master branch

2016-07-24 Thread Nala Ginrut
In 2.1.3.59-516f7, the 'continue' in 'while loop' throw exception. It's OK in stable-2.0. code (define i 0) (while (< i 20)        (display i)(newline)        (when (= i 11) (continue)) (set! i (1+ i))) end