mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
Amend 20976e81
: remove debug messages
This commit is contained in:
parent
ad954a32a5
commit
c54fe6c584
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user