Parser.cpp: a workaround for bug #8525

This commit is contained in:
Uwe Stöhr 2013-02-17 02:38:29 +01:00
parent 43bcf4c9c2
commit fb64fe613f

View File

@ -462,7 +462,8 @@ Parser::Arg Parser::getFullArg(char left, char right, bool allow_escaping)
putback();
return make_pair(false, string());
} else {
for (t = get_token(); good(); t = get_token()) {
while (good()) {
t = get_token();
// Ignore comments
if (t.cat() == catComment) {
if (!t.cs().empty())