From: Chris Hanson Date: Sat, 2 Dec 1989 05:03:24 +0000 (+0000) Subject: Force compilation times to be written out in decimal notation. X-Git-Tag: 20090517-FFI~11642 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=f40c68607d85996c252948e8060ec6eff671aa4b;p=mit-scheme.git Force compilation times to be written out in decimal notation. --- diff --git a/v7/src/compiler/base/toplev.scm b/v7/src/compiler/base/toplev.scm index de4d6cfcd..6c399266a 100644 --- a/v7/src/compiler/base/toplev.scm +++ b/v7/src/compiler/base/toplev.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/compiler/base/toplev.scm,v 4.23 1989/11/02 08:08:04 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/compiler/base/toplev.scm,v 4.24 1989/12/02 05:03:24 cph Exp $ Copyright (c) 1988, 1989 Massachusetts Institute of Technology @@ -525,9 +525,9 @@ MIT in each case. |# (write-string *output-prefix*) (write-string prefix) (write-string ": ") - (write (/ process-time 1000)) + (write (/ (exact->inexact process-time) 1000)) (write-string " (process time); ") - (write (/ real-time 1000)) + (write (/ (exact->inexact real-time) 1000)) (write-string " (real time)")) (define-macro (last-reference name)