mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-02 14:01:10 +00:00
read & and \\ nested in {} again
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2616 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
f4c407e4f6
commit
10187ee6d9
@ -696,7 +696,7 @@ void Parser::parse_into(MathArray & array, unsigned flags, MathTextCodes code)
|
|||||||
|
|
||||||
else if (t.cat() == catAlign) {
|
else if (t.cat() == catAlign) {
|
||||||
lyxerr << "found tab unexpectedly, array: '" << array << "'\n";
|
lyxerr << "found tab unexpectedly, array: '" << array << "'\n";
|
||||||
return;
|
array.push_back(new MathCharInset('&', LM_TC_SPECIAL));
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (t.cat() == catSuper)
|
else if (t.cat() == catSuper)
|
||||||
@ -728,10 +728,11 @@ void Parser::parse_into(MathArray & array, unsigned flags, MathTextCodes code)
|
|||||||
|
|
||||||
else if (t.cs() == "\\") {
|
else if (t.cs() == "\\") {
|
||||||
curr_skip_ = getArg('[', ']');
|
curr_skip_ = getArg('[', ']');
|
||||||
if (!(flags & FLAG_NEWLINE))
|
if (flags & FLAG_NEWLINE)
|
||||||
lyxerr[Debug::MATHED]
|
return;
|
||||||
|
lyxerr[Debug::MATHED]
|
||||||
<< "found newline unexpectedly, array: '" << array << "'\n";
|
<< "found newline unexpectedly, array: '" << array << "'\n";
|
||||||
return;
|
array.push_back(createMathInset("\\"));
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (t.cs() == "limits")
|
else if (t.cs() == "limits")
|
||||||
|
Loading…
Reference in New Issue
Block a user