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)
continue;
}
else
break;
{
mu_printf ("\n");
break;
}
}
/* Remove leading and trailing whitespace from the line.
......