commit 5c303abf1c18a6a450f7095a21d2295e384c1c75
Author: Kornel Benko <[email protected]>
Date:   Sat Aug 4 07:51:53 2018 +0200

    Amend f3b89e4: Use correct end-layout
    
        Also correct indentation of innner values
---
 src/Layout.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/Layout.cpp b/src/Layout.cpp
index 7801e8f..023af65 100644
--- a/src/Layout.cpp
+++ b/src/Layout.cpp
@@ -1434,14 +1434,14 @@ void Layout::write(ostream & os) const
                os << "\n\tEndAutoNests\n";
        }
        if (!autonested_by_.empty()) {
-               os << "\tIsAutoNestedBy\n\t";
+               os << "\tIsAutoNestedBy\n\t\t";
                for (set<docstring>::const_iterator it = autonested_by_.begin();
                     it != autonested_by_.end(); ++it) {
                        if (it != autonested_by_.begin())
                                os << ',';
                        os << to_utf8(*it);
                }
-               os << "\n\tIsAutoNestedBy\n";
+               os << "\n\tEndIsAutoNestedBy\n";
        }
        if (refprefix.empty())
                os << "\tRefPrefix OFF\n";

Reply via email to