From: Chris Hanson Date: Mon, 14 Aug 1989 09:14:45 +0000 (+0000) Subject: Change file-loading prompts to use trailing dots. X-Git-Tag: 20090517-FFI~11833 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=5859b648b0bd3941c67f067b89575980e81ed282;p=mit-scheme.git Change file-loading prompts to use trailing dots. --- diff --git a/v7/src/edwin/autold.scm b/v7/src/edwin/autold.scm index a76bf94e5..b0622f75b 100644 --- a/v7/src/edwin/autold.scm +++ b/v7/src/edwin/autold.scm @@ -1,6 +1,6 @@ ;;; -*-Scheme-*- ;;; -;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/autold.scm,v 1.46 1989/08/12 08:31:05 cph Exp $ +;;; $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/edwin/autold.scm,v 1.47 1989/08/14 09:14:45 cph Exp $ ;;; ;;; Copyright (c) 1986, 1989 Massachusetts Institute of Technology ;;; @@ -200,7 +200,7 @@ Second arg is prefix arg when called interactively." (let ((library (or (assq name known-libraries) (editor-error "Unknown library name: " name)))) - (temporary-message "Loading " (car library)) + (temporary-message "Loading " (car library) "...") (let ((directory (edwin-binary-directory))) (for-each (lambda (entry) @@ -212,7 +212,7 @@ Second arg is prefix arg when called interactively." (if (not (memq (car library) loaded-libraries)) (set! loaded-libraries (cons (car library) loaded-libraries))) (run-library-load-hooks! (car library)) - (append-message " -- done")))) + (append-message "done")))) (cond ((not (library-loaded? name)) (do-it)) ((not force?) @@ -226,9 +226,10 @@ Second arg PURIFY? means purify the file's contents after loading; this is the prefix arg when called interactively." "fLoad file\nP" (lambda (filename purify?) - (temporary-message "Loading file \"" filename "\"") + (temporary-message "Loading " filename "...") (load-edwin-file filename '(EDWIN) purify?) - (append-message " -- done"))) + (append-message "done"))) + (define (load-edwin-file filename environment purify?) (with-output-to-transcript-buffer (lambda ()