* src/Text2.cpp:

- fix wrong DEPM in ct mode (bug 3961).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@19885 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2007-08-29 13:05:35 +00:00
parent 7d327f2688
commit 97e7578b62
2 changed files with 5 additions and 2 deletions

View File

@ -1159,7 +1159,8 @@ bool Text::deleteEmptyParagraphMechanism(Cursor & cur,
&& old.pos() < oldpar.size()
&& oldpar.isLineSeparator(old.pos())
&& oldpar.isLineSeparator(old.pos() - 1)
&& !oldpar.isDeleted(old.pos() - 1)) {
&& !oldpar.isDeleted(old.pos() - 1)
&& !oldpar.isDeleted(old.pos())) {
oldpar.eraseChar(old.pos() - 1, cur.buffer().params().trackChanges);
#ifdef WITH_WARNINGS
#warning This will not work anymore when we have multiple views of the same buffer

View File

@ -102,10 +102,12 @@ What's new
- Reset current cursor font when going to a bookmark.
- Fix crash when login out from within Gnome desktop (Bug 1656).
- Fix crash when login out from within Gnome desktop (bug 1656).
- Fix crash when inserting float.
- Fix wrong handling of spaces in change tracking mode (bug 3961).
* DOCUMENTATION