adding 2 more aliases needed for gambit

This commit is contained in:
JeffBezanson 2010-03-12 06:19:01 +00:00
parent 716a6447f9
commit 731e41cdb6
1 changed files with 8 additions and 0 deletions

View File

@ -140,6 +140,10 @@
(define (current-output-port (p *output-stream*))
(set! *output-stream* p))
(define (input-port-line p)
; TODO
1)
(define get-datum read)
(define (put-datum port x)
(with-bindings ((*print-readably* #t))
@ -272,6 +276,10 @@
(trycatch (thk)
(lambda (e) (hand e))))
(define (current-exception-handler)
; close enough
(lambda (e) (raise e)))
(define make-table table)
(define table-ref get)
(define table-set! put!)