mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-26 22:17:41 +00:00
Don't write \PassThruChars if it is empty.
This commit is contained in:
parent
f2e759d499
commit
c3c1ac0621
@ -1286,7 +1286,8 @@ void Layout::write(ostream & os) const
|
||||
os << "\tLabelCounter \"" << to_utf8(counter) << "\"\n";
|
||||
os << "\tFreeSpacing " << free_spacing << '\n';
|
||||
os << "\tPassThru " << pass_thru << '\n';
|
||||
os << "\tPassThruChars " << to_utf8(pass_thru_chars) << '\n';
|
||||
if (!pass_thru_chars.empty())
|
||||
os << "\tPassThruChars " << to_utf8(pass_thru_chars) << '\n';
|
||||
os << "\tParbreakIsNewline " << parbreak_is_newline << '\n';
|
||||
switch (spacing.getSpace()) {
|
||||
case Spacing::Double:
|
||||
|
Loading…
Reference in New Issue
Block a user