mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
tex2lyx: honor grouping in optional arguments.
E.g., \cite[{a literal ] character}]{key}
This commit is contained in:
parent
0513622fd0
commit
cba38881d6
@ -494,6 +494,7 @@ Parser::Arg Parser::getFullArg(char left, char right, bool allow_escaping)
|
||||
if (! good())
|
||||
return make_pair(false, string());
|
||||
|
||||
int group_level = 0;
|
||||
string result;
|
||||
Token t = get_token();
|
||||
|
||||
@ -504,6 +505,15 @@ Parser::Arg Parser::getFullArg(char left, char right, bool allow_escaping)
|
||||
} else {
|
||||
while (good()) {
|
||||
t = get_token();
|
||||
// honor grouping
|
||||
if (left != '{' && t.cat() == catBegin) {
|
||||
++group_level;
|
||||
continue;
|
||||
}
|
||||
if (left != '{' && t.cat() == catEnd) {
|
||||
--group_level;
|
||||
continue;
|
||||
}
|
||||
// Ignore comments
|
||||
if (t.cat() == catComment) {
|
||||
if (!t.cs().empty())
|
||||
@ -511,13 +521,15 @@ Parser::Arg Parser::getFullArg(char left, char right, bool allow_escaping)
|
||||
continue;
|
||||
}
|
||||
if (allow_escaping) {
|
||||
if (t.cat() != catEscape && t.character() == right)
|
||||
if (t.cat() != catEscape && t.character() == right
|
||||
&& group_level == 0)
|
||||
break;
|
||||
} else {
|
||||
if (t.character() == right) {
|
||||
if (t.cat() == catEscape)
|
||||
result += '\\';
|
||||
break;
|
||||
if (group_level == 0)
|
||||
break;
|
||||
}
|
||||
}
|
||||
result += t.asInput();
|
||||
|
Loading…
Reference in New Issue
Block a user