This is the mail archive of the kawa@sources.redhat.com 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]

Re: kawa/qexo/jemacs version 1.7beta2 released


Thanks for the new release.

SRFI-0 seems to be broken (at least for a legal empty 'else'):
> kawa
#|kawa:1|# (load "kawabug2.scm")
hasFeature(srfi-1)->false
kawabug2.scm:1:2: invalid syntax for if
#|kawa:2|# 

kawabug2.scm:
(cond-expand ((not srfi-1)
(define append! (lambda (a b)
  (cond ((null? a)
         b)
        (else
          (let iter ((a1 a)
                     (a2 (cdr a)))
            (cond ((null? a2)
                   (set-cdr! a1 b)
                   a)
                  (else
                    (iter a2 (cdr a2)))))))))
)(else))



Greetings
Sven


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