* the "expand" primitive is gone.
This commit is contained in:
parent
4f8d8fa212
commit
11e6d6518f
BIN
src/ikarus.boot
BIN
src/ikarus.boot
Binary file not shown.
|
@ -5187,10 +5187,6 @@
|
|||
ls*)])
|
||||
(car code*)))))
|
||||
|
||||
(define (compile-expr->code x)
|
||||
(compile-core-expr->code
|
||||
(parameterize ([assembler-output #f])
|
||||
(expand x))))
|
||||
|
||||
(define compile-core-expr-to-port
|
||||
(lambda (expr port)
|
||||
|
@ -5213,6 +5209,10 @@
|
|||
#!eof junk
|
||||
|
||||
|
||||
(define (compile-expr->code x)
|
||||
(compile-core-expr->code
|
||||
(parameterize ([assembler-output #f])
|
||||
(expand x))))
|
||||
|
||||
(primitive-set! 'compile
|
||||
(lambda (x)
|
||||
|
|
|
@ -404,7 +404,6 @@
|
|||
[eval-core eval-core-label (core-prim . eval-core)]
|
||||
[load load-label (core-prim . load)]
|
||||
[assembler-output assembler-output-label (core-prim . assembler-output)]
|
||||
[expand expand-label (core-prim . expand)]
|
||||
[fasl-write fasl-write-label (core-prim . fasl-write)]
|
||||
[new-cafe new-cafe-label (core-prim . new-cafe)]
|
||||
[command-line-arguments command-line-arguments-label (core-prim . command-line-arguments)]
|
||||
|
|
Loading…
Reference in New Issue