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
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
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
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