Skip to content
Snippets Groups Projects
Commit 100004ee authored by stijn's avatar stijn Committed by Paul Sokolovsky
Browse files

unix: Print an extra newline to the output on ctrl-D

This assures the terminal prints it's prompt on a fresh line instead of
appending it to the uPy prompt after exit.
parent 6a664cb1
No related branches found
No related tags found
No related merge requests found
......@@ -52,6 +52,7 @@ char *prompt(char *p) {
vstr_clear(&vstr);
if (ret == CHAR_CTRL_D) {
// EOF
printf("\n");
return NULL;
} else {
printf("\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment