* the "expand" primitive is gone.

This commit is contained in:
Abdulaziz Ghuloum 2007-05-03 01:22:33 -04:00
parent 4f8d8fa212
commit 11e6d6518f
3 changed files with 4 additions and 5 deletions

Binary file not shown.

View File

@ -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)

View File

@ -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)]