adding 2 more aliases needed for gambit
This commit is contained in:
parent
716a6447f9
commit
731e41cdb6
|
@ -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!)
|
||||
|
|
Loading…
Reference in New Issue