Re: A bit further toward the flamewar

2011-10-17 Thread Andy Wingo
On Fri 14 Oct 2011 18:23, Linas Vepstas writes: > 2) Flame-war. > > In the spirit of 2), Whee! (I generally avoid flamewars, but this one has not caught fire yet :) > So the proposal is: (shout me down, when ready): create a new srfi, > defining an ML-like conception of types, so that scheme f

Strange error from %search-load-path via include-from-path when parameter is not a literal string

2011-10-17 Thread Ian Hulin
Hi, I'm trying to write a V2/V1 compatible function like the following: (define (ly:include the-file) (if (string>? (version) "1.9.10") (include-from-path the-file) (load-from-path the-file))) I get ERROR in procedure %search-load-path: Wrong type to apply in position 1 (expecting

Re: Strange error from %search-load-path via include-from-path when parameter is not a literal string

2011-10-17 Thread Andy Wingo
Hi, On Mon 17 Oct 2011 20:20, Ian Hulin writes: > I'm trying to write a V2/V1 compatible function like the following: > > (define (ly:include the-file) > (if (string>? (version) "1.9.10") > (include-from-path the-file) > (load-from-path the-file))) > > I get > ERROR in procedure %s

Re: Strange error from %search-load-path via include-from-path when parameter is not a literal string

2011-10-17 Thread Mark H Weaver
Ian Hulin writes: > I'm trying to write a V2/V1 compatible function like the following: > > (define (ly:include the-file) > (if (string>? (version) "1.9.10") > (include-from-path the-file) > (load-from-path the-file))) The problem is that `include' and `include-from-path' are not pr