#| -*-Scheme-*-
-$Id: toplev.scm,v 4.15 1999/01/02 06:06:43 cph Exp $
+$Id: toplev.scm,v 4.16 2000/01/09 21:33:46 cph Exp $
-Copyright (c) 1988-1999 Massachusetts Institute of Technology
+Copyright (c) 1988-2000 Massachusetts Institute of Technology
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
(let ((start-date (get-decoded-time)))
(if sf:noisy?
(begin
- (newline)
(write-string "Syntax file: ")
(write (enough-namestring input-pathname))
(write-string " ")
- (write (enough-namestring bin-pathname))))
+ (write (enough-namestring bin-pathname))
+ (newline)))
(fasdump (make-comment
`((SOURCE-FILE . ,(->namestring input-pathname))
(DATE ,(decoded-time/year start-date)
(end-phase)
(if sf:noisy?
(begin
- (newline)
(write-string " ")
(write-string this-name)
- (write-string "...")))
+ (write-string "...")
+ (newline)))
(set! previous-name this-name)
unspecific)
(define (time-report prefix process-time real-time)
(if sf:noisy?
(begin
- (newline)
(write-string prefix)
(write-string ": ")
(write (/ (exact->inexact process-time) 1000))
(write-string " (process time); ")
(write (/ (exact->inexact real-time) 1000))
- (write-string " (real time)"))))
\ No newline at end of file
+ (write-string " (real time)")
+ (newline))))
\ No newline at end of file