]> git.lyx.org Git - lyx.git/blobdiff - src/Text2.cpp
Use footnotehyper rather than footnote if hyperref is used
[lyx.git] / 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;