Let lyxclient read the whole line of input.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26586 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2008-09-26 23:58:40 +00:00
parent 8195cd1e2a
commit 82f1cb7463

View File

@ -619,7 +619,7 @@ int main(int argc, char * argv[])
iowatch.wait();
if (iowatch.isset(0)) {
string command;
cin >> command;
getline(cin, command);
if (command == "BYE:") {
server->writeln("BYE:");
saidbye = true;