]> git.lyx.org Git - features.git/commitdiff
#7350 more checks to validate the DocIterator before calling locateWord() in checkNew...
authorStephan Witt <switt@lyx.org>
Tue, 15 Mar 2011 10:27:41 +0000 (10:27 +0000)
committerStephan Witt <switt@lyx.org>
Tue, 15 Mar 2011 10:27:41 +0000 (10:27 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37931 a592a061-630c-0410-9148-cb99ea01b6c8

src/Cursor.cpp

index 85b3d9857fca3cd5395e9f0252e255fc7e21403c..6144d5c28e8cff682db9808efdc0ffa0bea1a35b 100644 (file)
@@ -552,10 +552,16 @@ void Cursor::checkNewWordPosition()
        if (!inTexted())
                clearNewWordPosition();
        else {
-               // forget the position of the current started word
+               // forget the position of the current new word if
                // 1) the paragraph changes or
-               // 2) the count of nested insets changes
-               if (pit() != new_word_.pit() || depth() != new_word_.depth())
+               // 2) the count of nested insets changes or
+               // 3) the cursor pos is out of paragraph bound
+               if (pit() != new_word_.pit() ||
+                       depth() != new_word_.depth() ||
+                       new_word_.pos() > new_word_.lastpos()) {
+                       clearNewWordPosition();
+               } else if (new_word_.fixIfBroken())
+                       // 4) or the remembered position was "broken"
                        clearNewWordPosition();
                else {
                        FontSpan nw = locateWord(WHOLE_WORD);
@@ -2271,6 +2277,7 @@ bool Cursor::fixIfBroken()
        bool const broken_anchor = anchor_.fixIfBroken();
        
        if (broken_cursor || broken_anchor) {
+               clearNewWordPosition();
                clearSelection();
                return true;
        }