commit aaab1ad65d38c1ddaf68dfd1c4891ded26013ae0
Author: Jean-Marc Lasgouttes <[email protected]>
Date: Fri Feb 15 16:07:00 2019 +0100
DEPM: do not strip explicitly leading spaces
For the local version of DEPM, only what was around old cursor should change
For the global version, leading spaces are already handled.
---
src/Text2.cpp | 9 ---------
1 files changed, 0 insertions(+), 9 deletions(-)
diff --git a/src/Text2.cpp b/src/Text2.cpp
index c7824bb..b5c341c 100644
--- a/src/Text2.cpp
+++ b/src/Text2.cpp
@@ -941,13 +941,6 @@ bool Text::deleteEmptyParagraphMechanism(Cursor & cur,
return true;
}
- if (oldpar.stripLeadingSpaces(trackChanges)) {
- need_anchor_change = true;
- // We return true here because the Paragraph contents changed
and
- // we need a redraw before further action is processed.
- return true;
- }
-
return false;
}
@@ -1005,8 +998,6 @@ void Text::deleteEmptyParagraphMechanism(pit_type first,
pit_type last, bool tra
--last;
continue;
}
-
- par.stripLeadingSpaces(trackChanges);
}
}