Bug Fix - #213
- 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:
1
AUTHORS
1
AUTHORS
@@ -35,4 +35,5 @@ Thanks to the following, who submitted detailed bug reports and excellent sugges
|
||||
Bruce Dillahunty
|
||||
Askme Too
|
||||
Thomas@BIC
|
||||
Ian Mortimer
|
||||
|
||||
|
||||
@@ -1163,7 +1163,7 @@ void handleShell ()
|
||||
}
|
||||
}
|
||||
}
|
||||
while (keepGoing);
|
||||
while (keepGoing && !std::cin.eof ());
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user