changeset 18638:4ccd2b473f84

Print newline after closing interpreter with EOF (bug #41513). * toplev.cc (main_loop): Print newline when exiting interpreter.
author Vaibhav Gupta <vaibhav.gupta@students.iiit.ac.in>
date Mon, 07 Apr 2014 07:50:10 -0700
parents 2631484789cf
children a25bbe8c954c
files libinterp/corefcn/toplev.cc
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/corefcn/toplev.cc	Mon Apr 07 07:46:28 2014 -0700
+++ b/libinterp/corefcn/toplev.cc	Mon Apr 07 07:50:10 2014 -0700
@@ -652,6 +652,8 @@
     }
   while (retval == 0);
 
+  octave_stdout << "\n";
+
   if (retval == EOF)
     retval = 0;