shithub: femtolisp

Download patch

ref: 731e41cdb62f35d7a8fdb28a31ce707440aa8520
parent: 716a6447f98ee7baea8eb53bf41ffce390fbc309
author: JeffBezanson <jeff.bezanson@gmail.com>
date: Fri Mar 12 01:19:01 EST 2010

adding 2 more aliases needed for gambit


--- a/femtolisp/aliases.scm
+++ b/femtolisp/aliases.scm
@@ -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))
@@ -271,6 +275,10 @@
 (define (with-exception-catcher hand thk)
   (trycatch (thk)
 	    (lambda (e) (hand e))))
+
+(define (current-exception-handler)
+  ; close enough
+  (lambda (e) (raise e)))
 
 (define make-table table)
 (define table-ref get)