This is the mail archive of the kawa@sourceware.org mailing list for the Kawa project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

srfi-2 vs r7rs


Here's another snippet that works fine unless it's inside define-library.

    -seth

(define-library (foo)
  (export foo)
  (import (scheme base) (srfi 2))
  (begin
    (define (foo)
      (and-let* () 1))))

(import (scheme base)
        (scheme write)
        (foo))
(foo)


Argument 'kawa.standard.begin@326dff70' to 'apply-to-args' has wrong type (kawa.standard.begin) (expected: procedure)
    at gnu.kawa.functions.ApplyToArgs.applyN(ApplyToArgs.java:165)
    at gnu.mapping.ProcedureN.apply2(ProcedureN.java:39)
    at foo.foo(kawa-srfi-2.scm:13)
    ...


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]