]> git.lyx.org Git - features.git/commitdiff
fix the zombie chars
authorAlfredo Braunstein <abraunst@lyx.org>
Mon, 27 Oct 2003 20:23:26 +0000 (20:23 +0000)
committerAlfredo Braunstein <abraunst@lyx.org>
Mon, 27 Oct 2003 20:23:26 +0000 (20:23 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7992 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/text.C

index 7b861471277bd6a10ee7b667346d8df1e23f57a7..f9d8cb96990d9432dd08ca3988138a865184f56e 100644 (file)
@@ -1,3 +1,7 @@
+2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
+
+       * text.C (backspace): fix the "zombie characters"
+
 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
 
        * lyxfunc.C (dispatch): small fix to toc navigation inside branches
index 07890a6773be3fdf2c7ec0793142132ce939761f..bb30f45685d2c4f5d62b0c01e2d2d5061ef74858 100644 (file)
@@ -1679,7 +1679,7 @@ void LyXText::backspace()
                setCurrentFont();
 
        redoParagraph();
-       setCursor(cursor.par(), cursor.pos(), false, !cursor.boundary());
+       setCursor(cursor.par(), cursor.pos(), false, cursor.boundary());
 }