* boot-9.scm (scm-style-repl): call repl-report-start-timing if
authorGary Houston <ghouston@arglist.com>
Sun, 2 Mar 1997 19:53:32 +0000 (19:53 +0000)
committerGary Houston <ghouston@arglist.com>
Sun, 2 Mar 1997 19:53:32 +0000 (19:53 +0000)
read gets EOF.
* (exit): alias for quit.

ice-9/ChangeLog
ice-9/boot-9.scm

index 9b2d8b6..a4cd4f1 100644 (file)
@@ -1,3 +1,9 @@
+Sun Mar  2 19:47:14 1997  Gary Houston  <ghouston@actrix.gen.nz>
+
+       * boot-9.scm (scm-style-repl): call repl-report-start-timing if
+       read gets EOF.
+       * (exit): alias for quit.
+
 Sun Mar  2 05:25:11 1997  Gary Houston  <ghouston@actrix.gen.nz>
 
        * boot-9.scm (error-catching-loop thunk): use a status variable to
@@ -5,7 +11,7 @@ Sun Mar  2 05:25:11 1997  Gary Houston  <ghouston@actrix.gen.nz>
        (scm-style-repl): call -quit, passing return value from
        error-catching-repl.  Make -quit return its args.
        stand-alone-repl: comment out, since it seems unused.
-       
+
        (error-catching-loop thunk): discard trailing junk after a (quit).
 
 Sat Mar  1 15:24:39 1997  Mikael Djurfeldt  <mdj@mdj.nada.kth.se>
index f413fc9..f1eecff 100644 (file)
 (define (quit . args)
   (apply throw 'quit args))
 
+(define exit quit)
+
 ;;(define has-shown-backtrace-hint? #f) Defined by scm_init_backtrace ()
 
 ;; Replaced by C code:
                      (run-hooks after-read-hook)
                      (if (eof-object? val)
                          (begin
+                           (repl-report-start-timing)
                            (if scm-repl-verbose
                                (begin
                                  (newline)