Re: [MIT-Scheme-devel] Fixes pushed

2016-03-01 Thread Chris Hanson
Thanks, fixed. On Tue, Mar 1, 2016 at 10:34 AM, wrote: > > Fixed both bugs. > > One more, make check now fails on one test: > > ;Run tests "runtime/test-dynamic-env"... > ; Generating "test-dynamic-env.bin" because of: "test-dynamic-env.scm" > ; Generating SCode for file: "test-dynamic-env.scm

Re: [MIT-Scheme-devel] Fixes pushed

2016-03-01 Thread craven
> Fixed both bugs. One more, make check now fails on one test: ;Run tests "runtime/test-dynamic-env"... ; Generating "test-dynamic-env.bin" because of: "test-dynamic-env.scm" ; Generating SCode for file: "test-dynamic-env.scm" => "test-dynamic-env.bin"... done ; Generating "test-dynamic-env.c

Re: [MIT-Scheme-devel] Fixes pushed

2016-03-01 Thread Chris Hanson
Thanks! Fixed both bugs. On Mon, Feb 29, 2016 at 10:51 PM, wrote: > Hello Chris! > > One more, commit 69e6107c introduced optional parameters #!optional > start to vector-fill!, but end was overlooked (even though used in the > function). > I'd suggest the following: > > diff --git a/src/runtim

Re: [MIT-Scheme-devel] Fixes pushed

2016-02-29 Thread craven
Hello Chris! One more, commit 69e6107c introduced optional parameters #!optional start to vector-fill!, but end was overlooked (even though used in the function). I'd suggest the following: diff --git a/src/runtime/vector.scm b/src/runtime/vector.scm index 75baafb..90b4319 100644 --- a/src/runtim

Re: [MIT-Scheme-devel] Fixes pushed

2016-02-29 Thread craven
Hello Chris! Just a short notice, commit 70220c78a1ebd64ca276b831892e9315b7f08e7b (Fix parameterization in unpars.scm.) has the following: - (list (cons *unparse-with-maximum-readability?* #t)) + (list (cons param: #t)) which to me seems like it is missing

Re: [MIT-Scheme-devel] Fixes pushed

2016-02-28 Thread Arthur A. Gleckler
Chris Hanson writes: | The documentation is in a separate subdirectory from src/, so it's | built differently: > | cd doc/ | autoconf | ./configure | make Thanks. I can't believe I didn't think of . ___ MIT-Scheme-devel mailing list MIT-Scheme-devel@

Re: [MIT-Scheme-devel] Fixes pushed

2016-02-28 Thread Chris Hanson
The documentation is in a separate subdirectory from src/, so it's built differently: cd doc/ autoconf ./configure make On Sun, Feb 28, 2016 at 7:59 AM, Arthur A. Gleckler wrote: > Chris Hanson writes: > > | Note that I haven't yet updated the documentation to > | reflect these changes. I'll

Re: [MIT-Scheme-devel] Fixes pushed

2016-02-28 Thread Arthur A. Gleckler
Chris Hanson writes: | Note that I haven't yet updated the documentation to | reflect these changes. I'll get around to that soon. I'm embarrassed to say that I can't figure out how to build the documentation. I've been following these steps to build and install the system: make maintainer-

[MIT-Scheme-devel] Fixes pushed

2016-02-28 Thread Chris Hanson
I've finished fixing the issues with parameters; all public parameters are now called param:foo and each corresponds to the appropriate *foo*. Most of these parameters are write-only from the user side, so I've bound the *foo* variables to #!default and changed the code to pay attention only when