EndNests in Layout::write()

This commit is contained in:
Juergen Spitzmueller 2017-12-28 17:56:48 +01:00
parent 99ecc6e2c9
commit 8c56e89240

View File

@ -1401,14 +1401,14 @@ void Layout::write(ostream & os) const
os << '\n';
}
if (!nests_.empty()) {
os << "\tNests ";
os << "\tNests\n\t";
for (set<docstring>::const_iterator it = nests_.begin();
it != nests_.end(); ++it) {
if (it != nests_.begin())
os << ',';
os << to_utf8(*it);
}
os << '\n';
os << "\n\tEndNests\n";
}
if (refprefix.empty())
os << "\tRefPrefix OFF\n";