mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
We really do not want id to change
This commit is contained in:
parent
594401912b
commit
003a267764
@ -1151,8 +1151,10 @@ void Layout::readSpacing(Lexer & lex)
|
||||
|
||||
void Layout::readArgument(Lexer & lex, bool validating)
|
||||
{
|
||||
string id;
|
||||
lex >> id;
|
||||
if (!lex.next())
|
||||
return;
|
||||
string const id = lex.getString();
|
||||
|
||||
bool const itemarg = prefixIs(id, "item:");
|
||||
bool const postcmd = prefixIs(id, "post:");
|
||||
bool const listpreamble = prefixIs(id, "listpreamble:");
|
||||
|
Loading…
Reference in New Issue
Block a user