]> git.lyx.org Git - features.git/commitdiff
* src/paragraph_pimpl.C: replace FIXME for
authorMichael Schmitt <michael.schmitt@teststep.org>
Fri, 10 Nov 2006 21:49:37 +0000 (21:49 +0000)
committerMichael Schmitt <michael.schmitt@teststep.org>
Fri, 10 Nov 2006 21:49:37 +0000 (21:49 +0000)
change tracking by a comment

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15845 a592a061-630c-0410-9148-cb99ea01b6c8

src/paragraph_pimpl.C

index ce44bf2968af07d391383a602972e70459741935..fc8fb8437402ca529064fa74d41747da4b113fb3 100644 (file)
@@ -280,10 +280,10 @@ bool Paragraph::Pimpl::eraseChar(pos_type pos, bool trackChanges)
                        return false;
        }
 
-       // Don't physically access nonexistent end-of-paragraph char
+       // Don't physically access the imaginary end-of-paragraph character.
+       // eraseChar() can only mark it as DELETED. A physical deletion of
+       // end-of-par must be handled externally.
        if (pos == size()) {
-               // FIXME: change tracking (MG)
-               // how do we handle end-of-pars previously marked inserted?
                return false;
        }