diff libinterp/corefcn/toplev.cc @ 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 bc31d9359cf9
children fc43c8017e9b
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;