* moved eof-object to ikarus.singular-objects
This commit is contained in:
parent
c0bf35338d
commit
b3f5d5780a
BIN
src/ikarus.boot
BIN
src/ikarus.boot
Binary file not shown.
|
@ -11,8 +11,6 @@
|
||||||
(primitive-set! x v)
|
(primitive-set! x v)
|
||||||
(set-top-level-value! x v)))
|
(set-top-level-value! x v)))
|
||||||
|
|
||||||
(primitive-set! 'eof-object
|
|
||||||
(lambda () (eof-object)))
|
|
||||||
|
|
||||||
(primitive-set! 'pointer-value
|
(primitive-set! 'pointer-value
|
||||||
(lambda (x)
|
(lambda (x)
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
|
|
||||||
(library (ikarus singular-objects)
|
(library (ikarus singular-objects)
|
||||||
(export base-rtd)
|
(export base-rtd eof-object)
|
||||||
(import
|
(import
|
||||||
(rename (ikarus) (base-rtd sys:base-rtd)))
|
(rename (ikarus)
|
||||||
|
(eof-object sys:eof-object)
|
||||||
|
(base-rtd sys:base-rtd)))
|
||||||
|
|
||||||
|
(define (eof-object) (sys:eof-object))
|
||||||
(define (base-rtd) (sys:base-rtd)))
|
(define (base-rtd) (sys:base-rtd)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue