SRFI text is incomplete Lars Thomas Hansen (04 Jun 1999 14:12 UTC)
Re: SRFI text is incomplete Richard Kelsey (04 Jun 1999 15:06 UTC)
Re: SRFI text is incomplete sperber@xxxxxx (07 Jun 1999 09:09 UTC)

Re: SRFI text is incomplete Richard Kelsey 04 Jun 1999 15:06 UTC

Lars is correct, the end of the second implementation is missing.
Here is a complete copy.
                                 -Richard Kelsey

(define-syntax program
  (syntax-rules (requires files code feature-cond)
    ((program)
     (begin))
    ((program (requires feature-id ...)
              more ...)
     (begin (cond-expand ((and feature-id ...) 'okay))
            (program more ...)))
    ((program (files filename ...)
              more ...)
     (begin (load filename) ...
            (program more ...)))
    ((program (code stuff ...)
              more ...)
     (begin stuff ...
            (program more ...)))
    ((program (feature-cond (requirement stuff ...) ...)
              more ...)
     (begin (cond-expand (requirement (program stuff ...)) ...)
            (program more ...)))))