From 8c56e892402ce5e35971f8e8c8d07baece451573 Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Thu, 28 Dec 2017 17:56:48 +0100 Subject: [PATCH] EndNests in Layout::write() --- src/Layout.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Layout.cpp b/src/Layout.cpp index 4f7f215b70..2f9c867e33 100644 --- a/src/Layout.cpp +++ b/src/Layout.cpp @@ -1401,14 +1401,14 @@ void Layout::write(ostream & os) const os << '\n'; } if (!nests_.empty()) { - os << "\tNests "; + os << "\tNests\n\t"; for (set::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"; -- 2.39.2