Newline missing in end of computation termination.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Thu, 28 May 1987 00:45:29 +0000 (00:45 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Thu, 28 May 1987 00:45:29 +0000 (00:45 +0000)
v7/src/microcode/boot.c

index 9905858fec1faffa844e7e10d9dd7e34f6a4e699..c40901a39e6d95429aabbe1bc73ae9e9d29cf7d6 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/boot.c,v 9.32 1987/05/27 14:50:14 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/boot.c,v 9.33 1987/05/28 00:45:29 jinx Exp $
 
 Copyright (c) 1987 Massachusetts Institute of Technology
 
@@ -541,7 +541,9 @@ long Err, Micro_Error;
     case TERM_EOF:
       printf("\nEnd of input stream reached.\n"); break;
     case TERM_END_OF_COMPUTATION:
-      Print_Expression(Val, "End of computation; final result"); break;
+      Print_Expression(Val, "End of computation; final result");
+      printf("\n");
+      break;
     case TERM_EXIT:
       printf("Inconsistency detected.\n"); break;
     case TERM_GC_OUT_OF_SPACE: