[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: IEEE Standard



At  2:51 PM 8/8/94 -0400, dak@sq.com wrote:
>The R4RS has a minor bug in 7.1.5, "Programs and definitions" in that:
...
>
>doesn't allow:
>
>(define (foo . args) ...)


This is correct.
  (define foo (lambda ( . args) ...))
is also disallowed.

This is a feature, not a bug.  It is the same in R^4RS.  If you "fix" this,
by definition you are non-standard.

-Ken