This commit is contained in:
beard%netscape.com 2000-05-05 04:19:20 +00:00
Родитель a6aad50ed4
Коммит 825b909a2d
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -200,7 +200,9 @@ registers, or set the value of a single register."},
printFormat (stdOut, "%04X", (pc - iCode->its_iCode->begin()));
stdOut << "]> ";
std::getline(mIn, line);
if (std::getline(mIn, line).eof())
std::exit(0);
if (line.size() == 0)
line = lastLine;
else

Просмотреть файл

@ -200,7 +200,9 @@ registers, or set the value of a single register."},
printFormat (stdOut, "%04X", (pc - iCode->its_iCode->begin()));
stdOut << "]> ";
std::getline(mIn, line);
if (std::getline(mIn, line).eof())
std::exit(0);
if (line.size() == 0)
line = lastLine;
else