Make the default REPL value procedure write ";Value: " before the
authorChris Hanson <org/chris-hanson/cph>
Mon, 11 Jul 1988 18:53:25 +0000 (18:53 +0000)
committerChris Hanson <org/chris-hanson/cph>
Mon, 11 Jul 1988 18:53:25 +0000 (18:53 +0000)
value, to make this more like the Emacs interface.

v7/src/runtime/rep.scm

index 375c2b0485fbffdd69ee75ec4789a17980214155..6658d962c757125abd0f567a47b5f0cfcfc096e1 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/rep.scm,v 14.2 1988/07/06 20:34:20 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/rep.scm,v 14.3 1988/07/11 18:53:25 cph Exp $
 
 Copyright (c) 1988 Massachusetts Institute of Technology
 
@@ -396,7 +396,9 @@ MIT in each case. |#
   (let ((port (cmdl/output-port repl)))
     (if (undefined-value? object)
        (write-string "\n;No value" port)
-       (write-line object port))))
+       (begin
+         (write-string "\n;Value: " port)
+         (write object port)))))
 \f
 ;;;; History