From: Alfredo Braunstein Date: Mon, 27 Oct 2003 20:23:26 +0000 (+0000) Subject: fix the zombie chars X-Git-Tag: 1.6.10~15878 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=12a2f2705f2f353aafd3cde9c9c21d59ad06c14a;p=features.git fix the zombie chars git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7992 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/ChangeLog b/src/ChangeLog index 7b86147127..f9d8cb9699 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2003-10-27 Alfredo Braunstein + + * text.C (backspace): fix the "zombie characters" + 2003-10-27 Alfredo Braunstein * lyxfunc.C (dispatch): small fix to toc navigation inside branches diff --git a/src/text.C b/src/text.C index 07890a6773..bb30f45685 100644 --- a/src/text.C +++ b/src/text.C @@ -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()); }