- Fixed bug that ignored the fact that std:cin was closed by a Ctrl-D
  in the "shell" command.  Thanks to Ian Mortimer.
This commit is contained in:
Paul Beckingham 2009-07-16 22:03:11 -04:00
parent c5809b6b8d
commit 9100217da0
2 changed files with 2 additions and 1 deletions

View file

@ -35,4 +35,5 @@ Thanks to the following, who submitted detailed bug reports and excellent sugges
Bruce Dillahunty Bruce Dillahunty
Askme Too Askme Too
Thomas@BIC Thomas@BIC
Ian Mortimer

View file

@ -1163,7 +1163,7 @@ void handleShell ()
} }
} }
} }
while (keepGoing); while (keepGoing && !std::cin.eof ());
} }
#endif #endif