mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
Parser.cpp: a workaround for bug #8525
This commit is contained in:
parent
43bcf4c9c2
commit
fb64fe613f
@ -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())
|
||||
|
Loading…
Reference in New Issue
Block a user