]> git.lyx.org Git - features.git/commitdiff
Amend 20976e81: remove debug messages
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Mon, 23 Jul 2018 21:48:52 +0000 (23:48 +0200)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Mon, 23 Jul 2018 21:48:52 +0000 (23:48 +0200)
src/Text2.cpp

index d8a9114576d7b6bca6ce69fa8c81aec9beec01dc..17f32ad7dbe8e1273fbd30f14e7832e00d4a618c 100644 (file)
@@ -947,13 +947,11 @@ void Text::deleteEmptyParagraphMechanism(pit_type first, pit_type last, bool tra
                        while (from < par.size()
                               && (!par.isLineSeparator(from) || par.isDeleted(from)))
                                ++from;
-                       LYXERR0("from=" << from);
                        // find string of spaces
                        pos_type to = from;
                        while (to < par.size()
                               && par.isLineSeparator(to) && !par.isDeleted(to))
                                ++to;
-                       LYXERR0("to=" << to);
                        // empty? We are done
                        if (from == to)
                                break;