arogue5: add nonl() to prevent CR/LF confusion.

This commit is contained in:
John "Elwin" Edwards 2012-08-11 18:56:32 +00:00
parent f0527564ea
commit 8c27cf1402
2 changed files with 2 additions and 0 deletions

View file

@ -844,6 +844,7 @@ shell()
printf(retstr);
fflush(stdout);
nonl();
noecho();
raw();
keypad(cw,1);

View file

@ -363,6 +363,7 @@ setup()
num_checks = 0;
}
#endif
nonl();
crmode(); /* Cbreak mode */
noecho(); /* Echo off */
}