# HG changeset patch # User elwin # Date 1344711392 0 # Node ID 7a7fb9b810e19f33bc7c242c72a2b7694e68e4e8 # Parent c49f7927b0fa3c65dda06ea38012e55321eb2f8c arogue5: add nonl() to prevent CR/LF confusion. diff -r c49f7927b0fa -r 7a7fb9b810e1 arogue5/command.c --- a/arogue5/command.c Sat Aug 11 17:19:03 2012 +0000 +++ b/arogue5/command.c Sat Aug 11 18:56:32 2012 +0000 @@ -844,6 +844,7 @@ printf(retstr); fflush(stdout); + nonl(); noecho(); raw(); keypad(cw,1); diff -r c49f7927b0fa -r 7a7fb9b810e1 arogue5/main.c --- a/arogue5/main.c Sat Aug 11 17:19:03 2012 +0000 +++ b/arogue5/main.c Sat Aug 11 18:56:32 2012 +0000 @@ -363,6 +363,7 @@ num_checks = 0; } #endif + nonl(); crmode(); /* Cbreak mode */ noecho(); /* Echo off */ }