forked from lix-project/lix
Fix recognition of REPL commands.
This commit is contained in:
parent
64080d26fe
commit
60ba98242f
|
@ -286,7 +286,7 @@ bool NixRepl::processLine(string line)
|
||||||
string command, arg;
|
string command, arg;
|
||||||
|
|
||||||
if (line[0] == ':') {
|
if (line[0] == ':') {
|
||||||
size_t p = line.find(' ');
|
size_t p = line.find_first_of(" \n\r\t");
|
||||||
command = string(line, 0, p);
|
command = string(line, 0, p);
|
||||||
if (p != string::npos) arg = removeWhitespace(string(line, p));
|
if (p != string::npos) arg = removeWhitespace(string(line, p));
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue