Commit 342d2183 342d21837df24291e46864e040794ac8f3d57125 by Sergey Poznyakoff

Minor change.

* mu/shell.c: Output newline when EOF is received.
1 parent e5ec3ce6
...@@ -627,7 +627,10 @@ mutool_shell (const char *name, struct mutool_command *cmd) ...@@ -627,7 +627,10 @@ mutool_shell (const char *name, struct mutool_command *cmd)
627 continue; 627 continue;
628 } 628 }
629 else 629 else
630 break; 630 {
631 mu_printf ("\n");
632 break;
633 }
631 } 634 }
632 635
633 /* Remove leading and trailing whitespace from the line. 636 /* Remove leading and trailing whitespace from the line.
......