mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Fix bug #10936.
This commit is contained in:
parent
c86184ce3d
commit
12db09aac2
@ -720,7 +720,7 @@ string Parser::verbatim_item()
|
||||
if (next_token().cat() == catBegin) {
|
||||
Token t = get_token(); // skip brace
|
||||
string res;
|
||||
for (Token t = get_token(); t.cat() != catEnd && good(); t = get_token()) {
|
||||
for (t = get_token(); t.cat() != catEnd && good(); t = get_token()) {
|
||||
if (t.cat() == catBegin) {
|
||||
putback();
|
||||
res += '{' + verbatim_item() + '}';
|
||||
|
Loading…
Reference in New Issue
Block a user